backlight: lcd - Fix wrong sizeof
Which is why I have always preferred sizeof(struct foo) over sizeof(var). Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
parent
a9366e61b0
commit
1e0fa6bd8c
|
@ -56,7 +56,7 @@ static int fb_notifier_callback(struct notifier_block *self,
|
|||
|
||||
static int lcd_register_fb(struct lcd_device *ld)
|
||||
{
|
||||
memset(&ld->fb_notif, 0, sizeof(&ld->fb_notif));
|
||||
memset(&ld->fb_notif, 0, sizeof(ld->fb_notif));
|
||||
ld->fb_notif.notifier_call = fb_notifier_callback;
|
||||
return fb_register_client(&ld->fb_notif);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue