diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 15:40:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 15:40:26 -0400 |
commit | c813b4e16ead3c3df98ac84419d4df2adf33fe01 (patch) | |
tree | 2ca4a5b6966d833b6149e3dda7a4e85d1255779c /drivers/video | |
parent | c8d8a2321f9c4ee18fbcc399fdc2a77e580a03b9 (diff) | |
parent | 02683ffdf655b4ae15245376ba6fea6d9e5829a6 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6: (46 commits)
UIO: Fix mapping of logical and virtual memory
UIO: add automata sercos3 pci card support
UIO: Change driver name of uio_pdrv
UIO: Add alignment warnings for uio-mem
Driver core: add bus_sort_breadthfirst() function
NET: convert the phy_device file to use bus_find_device_by_name
kobject: Cleanup kobject_rename and !CONFIG_SYSFS
kobject: Fix kobject_rename and !CONFIG_SYSFS
sysfs: Make dir and name args to sysfs_notify() const
platform: add new device registration helper
sysfs: use ilookup5() instead of ilookup5_nowait()
PNP: create device attributes via default device attributes
Driver core: make bus_find_device_by_name() more robust
usb: turn dev_warn+WARN_ON combos into dev_WARN
debug: use dev_WARN() rather than WARN_ON() in device_pm_add()
debug: Introduce a dev_WARN() function
sysfs: fix deadlock
device model: Do a quickcheck for driver binding before doing an expensive check
Driver core: Fix cleanup in device_create_vargs().
Driver core: Clarify device cleanup.
...
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/console/fbcon.c | 4 | ||||
-rw-r--r-- | drivers/video/display/display-sysfs.c | 9 | ||||
-rw-r--r-- | drivers/video/fbmem.c | 5 |
3 files changed, 7 insertions, 11 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 93a080e827cc..64b3d30027b8 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c | |||
@@ -3573,8 +3573,8 @@ static int __init fb_console_init(void) | |||
3573 | 3573 | ||
3574 | acquire_console_sem(); | 3574 | acquire_console_sem(); |
3575 | fb_register_client(&fbcon_event_notifier); | 3575 | fb_register_client(&fbcon_event_notifier); |
3576 | fbcon_device = device_create_drvdata(fb_class, NULL, MKDEV(0, 0), | 3576 | fbcon_device = device_create(fb_class, NULL, MKDEV(0, 0), NULL, |
3577 | NULL, "fbcon"); | 3577 | "fbcon"); |
3578 | 3578 | ||
3579 | if (IS_ERR(fbcon_device)) { | 3579 | if (IS_ERR(fbcon_device)) { |
3580 | printk(KERN_WARNING "Unable to create device " | 3580 | printk(KERN_WARNING "Unable to create device " |
diff --git a/drivers/video/display/display-sysfs.c b/drivers/video/display/display-sysfs.c index 6ef800bdf482..4830b1bf51e5 100644 --- a/drivers/video/display/display-sysfs.c +++ b/drivers/video/display/display-sysfs.c | |||
@@ -153,12 +153,9 @@ struct display_device *display_device_register(struct display_driver *driver, | |||
153 | mutex_unlock(&allocated_dsp_lock); | 153 | mutex_unlock(&allocated_dsp_lock); |
154 | 154 | ||
155 | if (!ret) { | 155 | if (!ret) { |
156 | new_dev->dev = device_create_drvdata(display_class, | 156 | new_dev->dev = device_create(display_class, parent, |
157 | parent, | 157 | MKDEV(0, 0), new_dev, |
158 | MKDEV(0,0), | 158 | "display%d", new_dev->idx); |
159 | new_dev, | ||
160 | "display%d", | ||
161 | new_dev->idx); | ||
162 | if (!IS_ERR(new_dev->dev)) { | 159 | if (!IS_ERR(new_dev->dev)) { |
163 | new_dev->parent = parent; | 160 | new_dev->parent = parent; |
164 | new_dev->driver = driver; | 161 | new_dev->driver = driver; |
diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c index 3f18bb9abad0..217c5118ae9e 100644 --- a/drivers/video/fbmem.c +++ b/drivers/video/fbmem.c | |||
@@ -1430,9 +1430,8 @@ register_framebuffer(struct fb_info *fb_info) | |||
1430 | break; | 1430 | break; |
1431 | fb_info->node = i; | 1431 | fb_info->node = i; |
1432 | 1432 | ||
1433 | fb_info->dev = device_create_drvdata(fb_class, fb_info->device, | 1433 | fb_info->dev = device_create(fb_class, fb_info->device, |
1434 | MKDEV(FB_MAJOR, i), NULL, | 1434 | MKDEV(FB_MAJOR, i), NULL, "fb%d", i); |
1435 | "fb%d", i); | ||
1436 | if (IS_ERR(fb_info->dev)) { | 1435 | if (IS_ERR(fb_info->dev)) { |
1437 | /* Not fatal */ | 1436 | /* Not fatal */ |
1438 | printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev)); | 1437 | printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev)); |