[PATCH] Display name of fbdev device

This patch displays the name of the fbdev driver in sysfs.
Down the road this will replace the current proc handle we have.

Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by James Simmons and committed by Linus Torvalds 02459eaa f0098f78

+8
+8
drivers/video/fbsysfs.c
··· 414 fb_info->var.xoffset); 415 } 416 417 static struct class_device_attribute class_device_attrs[] = { 418 __ATTR(bits_per_pixel, S_IRUGO|S_IWUSR, show_bpp, store_bpp), 419 __ATTR(blank, S_IRUGO|S_IWUSR, show_blank, store_blank), ··· 431 __ATTR(modes, S_IRUGO|S_IWUSR, show_modes, store_modes), 432 __ATTR(pan, S_IRUGO|S_IWUSR, show_pan, store_pan), 433 __ATTR(virtual_size, S_IRUGO|S_IWUSR, show_virtual, store_virtual), 434 }; 435 436 int fb_init_class_device(struct fb_info *fb_info)
··· 414 fb_info->var.xoffset); 415 } 416 417 + static ssize_t show_name(struct class_device *class_device, char *buf) 418 + { 419 + struct fb_info *fb_info = (struct fb_info *)class_get_devdata(class_device); 420 + 421 + return snprintf(buf, PAGE_SIZE, "%s\n", fb_info->fix.id); 422 + } 423 + 424 static struct class_device_attribute class_device_attrs[] = { 425 __ATTR(bits_per_pixel, S_IRUGO|S_IWUSR, show_bpp, store_bpp), 426 __ATTR(blank, S_IRUGO|S_IWUSR, show_blank, store_blank), ··· 424 __ATTR(modes, S_IRUGO|S_IWUSR, show_modes, store_modes), 425 __ATTR(pan, S_IRUGO|S_IWUSR, show_pan, store_pan), 426 __ATTR(virtual_size, S_IRUGO|S_IWUSR, show_virtual, store_virtual), 427 + __ATTR(name, S_IRUGO, show_name, NULL), 428 }; 429 430 int fb_init_class_device(struct fb_info *fb_info)