Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2c16499 authored by Jon Smirl's avatar Jon Smirl Committed by Linus Torvalds
Browse files

[PATCH] Typo in fbdev sysfs support, virtual_size



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

Signed-off-by: default avatarJon Smirl <jonsmirl@gmail.com>
Cc: "Antonino A. Daplas" <adaplas@hotpop.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6df3cecb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -241,7 +241,7 @@ static ssize_t show_virtual(struct class_device *class_device, char *buf)
	struct fb_info *fb_info =
		(struct fb_info *)class_get_devdata(class_device);
	return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xres_virtual,
			fb_info->var.xres_virtual);
			fb_info->var.yres_virtual);
}

static ssize_t store_cmap(struct class_device *class_device, const char * buf,