Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] Typo in fbdev sysfs support, virtual_size

It prints out x,x instead of x,y.

Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
Cc: "Antonino A. Daplas" <adaplas@hotpop.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Jon Smirl and committed by
Linus Torvalds
e2c16499 6df3cecb

+1 -1
+1 -1
drivers/video/fbsysfs.c
··· 241 241 struct fb_info *fb_info = 242 242 (struct fb_info *)class_get_devdata(class_device); 243 243 return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xres_virtual, 244 - fb_info->var.xres_virtual); 244 + fb_info->var.yres_virtual); 245 245 } 246 246 247 247 static ssize_t store_cmap(struct class_device *class_device, const char * buf,