Message ID | 20110419094715.7888.84515.stgit@localhost6 (mailing list archive) |
---|---|
State | Accepted |
Commit | da09931454f4d84a1c44064a3db385886761542b |
Headers | show |
On 04/19/2011 05:47 AM, Konstantin Khlebnikov wrote: > drivers/video/efifb.c:247: warning: cast to pointer from integer of different size > > Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org> Looks fine to me: Signed-off-by: Peter Jones <pjones@redhat.com> > --- > drivers/video/efifb.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/video/efifb.c b/drivers/video/efifb.c > index 4eb38db..fb20584 100644 > --- a/drivers/video/efifb.c > +++ b/drivers/video/efifb.c > @@ -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); > > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html
On Tue, Apr 19, 2011 at 10:22:14AM -0400, Peter Jones wrote: > On 04/19/2011 05:47 AM, Konstantin Khlebnikov wrote: > > drivers/video/efifb.c:247: warning: cast to pointer from integer of different size > > > > Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org> > > Looks fine to me: > > Signed-off-by: Peter Jones <pjones@redhat.com> > Applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/video/efifb.c b/drivers/video/efifb.c index 4eb38db..fb20584 100644 --- a/drivers/video/efifb.c +++ b/drivers/video/efifb.c @@ -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);
drivers/video/efifb.c:247: warning: cast to pointer from integer of different size Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org> --- drivers/video/efifb.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html