diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2007-11-14 16:58:33 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-14 18:45:36 -0800 |
commit | 3cc2c17700c98b0af778566b0af6292b23b01430 (patch) | |
tree | 682ad7be38831721588f4c24fd0540cf2dd4e23b /drivers/video/ps3fb.c | |
parent | 682d73f685536fdb09322dde8caad339480e7bad (diff) | |
download | linux-3.10-3cc2c17700c98b0af778566b0af6292b23b01430.tar.gz linux-3.10-3cc2c17700c98b0af778566b0af6292b23b01430.tar.bz2 linux-3.10-3cc2c17700c98b0af778566b0af6292b23b01430.zip |
drivers/video/ps3fb: fix memset size error
The size passed to memset is wrong.
Signed-off-by Li Zefan <lizf@cn.fujitsu.com>
Acked-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/ps3fb.c')
-rw-r--r-- | drivers/video/ps3fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c index b3463ddcfd6..75836aa8319 100644 --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c @@ -727,7 +727,7 @@ static int ps3fb_blank(int blank, struct fb_info *info) static int ps3fb_get_vblank(struct fb_vblank *vblank) { - memset(vblank, 0, sizeof(&vblank)); + memset(vblank, 0, sizeof(*vblank)); vblank->flags = FB_VBLANK_HAVE_VSYNC; return 0; } |