diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2007-05-08 03:37:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:26 -0400 |
commit | c4270637ff379163d22721b897f0dc5592794c68 (patch) | |
tree | 16175bb54d63bc2e0e4c0d9cf8cd4fff69a73528 /drivers/video/fbsysfs.c | |
parent | 464bdd33e9baad9806c7adbd8dfc37081a55f27e (diff) |
fbdev: fix obvious bug in show_pan()
show_pan will display the value of the xoffset twice, instead of the xoffset
and yoffset. Fix.
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/fbsysfs.c')
-rw-r--r-- | drivers/video/fbsysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbsysfs.c b/drivers/video/fbsysfs.c index 40c80c8190e2..d4a2c11d9809 100644 --- a/drivers/video/fbsysfs.c +++ b/drivers/video/fbsysfs.c | |||
@@ -376,7 +376,7 @@ static ssize_t show_pan(struct device *device, | |||
376 | { | 376 | { |
377 | struct fb_info *fb_info = dev_get_drvdata(device); | 377 | struct fb_info *fb_info = dev_get_drvdata(device); |
378 | return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xoffset, | 378 | return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xoffset, |
379 | fb_info->var.xoffset); | 379 | fb_info->var.yoffset); |
380 | } | 380 | } |
381 | 381 | ||
382 | static ssize_t show_name(struct device *device, | 382 | static ssize_t show_name(struct device *device, |