All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5/6] drivers/video/ps3fb: fix memset size error
@ 2007-11-05  2:28 Li Zefan
  2007-11-05  8:30 ` Geert Uytterhoeven
  0 siblings, 1 reply; 4+ messages in thread
From: Li Zefan @ 2007-11-05  2:28 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML

The size passing to memset is wrong.

Signed-off-by Li Zefan <lizf@cn.fujitsu.com>

---
 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 b3463dd..75836aa 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;
 }
-- 
1.5.3.rc7


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-11-14 21:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-05  2:28 [PATCH 5/6] drivers/video/ps3fb: fix memset size error Li Zefan
2007-11-05  8:30 ` Geert Uytterhoeven
2007-11-05 13:00   ` Geert Uytterhoeven
2007-11-14 21:42     ` [stable] " Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.