diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-22 05:03:34 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-16 18:24:45 +0200 |
commit | 77997aaadd34510ed73153a4cd60161257a9e289 (patch) | |
tree | ad8ab469f7febb690749e2cae6c5a04b0dc016fc /drivers/video/console/fbcon.c | |
parent | device create: usb: convert device_create_drvdata to device_create (diff) | |
download | linux-77997aaadd34510ed73153a4cd60161257a9e289.tar.xz linux-77997aaadd34510ed73153a4cd60161257a9e289.zip |
device create: video: convert device_create_drvdata to device_create
Now that device_create() has been audited, rename things back to the
original call to be sane.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/video/console/fbcon.c')
-rw-r--r-- | drivers/video/console/fbcon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index da91bb16da8a..0e0ea4215a30 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c @@ -3573,8 +3573,8 @@ static int __init fb_console_init(void) acquire_console_sem(); fb_register_client(&fbcon_event_notifier); - fbcon_device = device_create_drvdata(fb_class, NULL, MKDEV(0, 0), - NULL, "fbcon"); + fbcon_device = device_create(fb_class, NULL, MKDEV(0, 0), NULL, + "fbcon"); if (IS_ERR(fbcon_device)) { printk(KERN_WARNING "Unable to create device " |