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

Commit dc3e5b6a authored by Konstantin Khlebnikov's avatar Konstantin Khlebnikov Committed by Paul Mundt
Browse files

efifb: fix int to pointer cast warning



drivers/video/efifb.c:247: warning: cast to pointer from integer of different size

Signed-off-by: default avatarKonstantin Khlebnikov <khlebnikov@openvz.org>
Signed-off-by: default avatarPeter Jones <pjones@redhat.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 4f2970b9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -242,9 +242,9 @@ static int set_system(const struct dmi_system_id *id)
		return 0;
	}

	printk(KERN_INFO "efifb: dmi detected %s - framebuffer at %p "
	printk(KERN_INFO "efifb: dmi detected %s - framebuffer at 0x%08x "
			 "(%dx%d, stride %d)\n", id->ident,
			 (void *)screen_info.lfb_base, screen_info.lfb_width,
			 screen_info.lfb_base, screen_info.lfb_width,
			 screen_info.lfb_height, screen_info.lfb_linelength);