* [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types [not found] <CGME20200116145444eucas1p1b62a023ad7ea3722193c932761eb8493@eucas1p1.samsung.com> @ 2020-01-16 14:54 ` Bartlomiej Zolnierkiewicz 2020-01-17 18:59 ` Sam Ravnborg 0 siblings, 1 reply; 5+ messages in thread From: Bartlomiej Zolnierkiewicz @ 2020-01-16 14:54 UTC (permalink / raw) To: linux-fbdev, dri-devel, linux-kernel; +Cc: Bartlomiej Zolnierkiewicz Use ->screen_buffer instead of ->screen_base to fix sparse warnings. [ Please see commit 17a7b0b4d974 ("fb.h: Provide alternate screen_base pointer") for details. ] Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> --- drivers/video/fbdev/wm8505fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/drivers/video/fbdev/wm8505fb.c =================================--- a/drivers/video/fbdev/wm8505fb.c +++ b/drivers/video/fbdev/wm8505fb.c @@ -339,7 +339,7 @@ static int wm8505fb_probe(struct platfor fbi->fb.fix.smem_start = fb_mem_phys; fbi->fb.fix.smem_len = fb_mem_len; - fbi->fb.screen_base = fb_mem_virt; + fbi->fb.screen_buffer = fb_mem_virt; fbi->fb.screen_size = fb_mem_len; fbi->contrast = 0x10; ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types 2020-01-16 14:54 ` [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types Bartlomiej Zolnierkiewicz @ 2020-01-17 18:59 ` Sam Ravnborg 0 siblings, 0 replies; 5+ messages in thread From: Sam Ravnborg @ 2020-01-17 18:59 UTC (permalink / raw) To: Bartlomiej Zolnierkiewicz; +Cc: linux-fbdev, linux-kernel, dri-devel On Thu, Jan 16, 2020 at 03:54:42PM +0100, Bartlomiej Zolnierkiewicz wrote: > Use ->screen_buffer instead of ->screen_base to fix sparse warnings. > > [ Please see commit 17a7b0b4d974 ("fb.h: Provide alternate screen_base > pointer") for details. ] > > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> > --- > drivers/video/fbdev/wm8505fb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: b/drivers/video/fbdev/wm8505fb.c > =================================> --- a/drivers/video/fbdev/wm8505fb.c > +++ b/drivers/video/fbdev/wm8505fb.c > @@ -339,7 +339,7 @@ static int wm8505fb_probe(struct platfor > > fbi->fb.fix.smem_start = fb_mem_phys; > fbi->fb.fix.smem_len = fb_mem_len; > - fbi->fb.screen_base = fb_mem_virt; > + fbi->fb.screen_buffer = fb_mem_virt; > fbi->fb.screen_size = fb_mem_len; > > fbi->contrast = 0x10; > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <CGME20200116145653eucas1p2222fb48dd6fe1023a4152e687ec577d5@eucas1p2.samsung.com>]
* [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types [not found] <CGME20200116145653eucas1p2222fb48dd6fe1023a4152e687ec577d5@eucas1p2.samsung.com> @ 2020-01-16 14:56 ` Bartlomiej Zolnierkiewicz 2020-01-17 18:58 ` Sam Ravnborg 0 siblings, 1 reply; 5+ messages in thread From: Bartlomiej Zolnierkiewicz @ 2020-01-16 14:56 UTC (permalink / raw) To: linux-fbdev, dri-devel, linux-kernel, linux-arm-kernel Cc: Tony Prisk, Bartlomiej Zolnierkiewicz Use ->screen_buffer instead of ->screen_base to fix sparse warnings. [ Please see commit 17a7b0b4d974 ("fb.h: Provide alternate screen_base pointer") for details. ] Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> --- Resend with Tony & linux-arm ML added to Cc:. drivers/video/fbdev/wm8505fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/drivers/video/fbdev/wm8505fb.c =================================--- a/drivers/video/fbdev/wm8505fb.c +++ b/drivers/video/fbdev/wm8505fb.c @@ -339,7 +339,7 @@ static int wm8505fb_probe(struct platfor fbi->fb.fix.smem_start = fb_mem_phys; fbi->fb.fix.smem_len = fb_mem_len; - fbi->fb.screen_base = fb_mem_virt; + fbi->fb.screen_buffer = fb_mem_virt; fbi->fb.screen_size = fb_mem_len; fbi->contrast = 0x10; ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types 2020-01-16 14:56 ` Bartlomiej Zolnierkiewicz @ 2020-01-17 18:58 ` Sam Ravnborg 2020-03-02 15:42 ` Bartlomiej Zolnierkiewicz 0 siblings, 1 reply; 5+ messages in thread From: Sam Ravnborg @ 2020-01-17 18:58 UTC (permalink / raw) To: Bartlomiej Zolnierkiewicz Cc: linux-arm-kernel, Tony Prisk, linux-fbdev, linux-kernel, dri-devel On Thu, Jan 16, 2020 at 03:56:50PM +0100, Bartlomiej Zolnierkiewicz wrote: > Use ->screen_buffer instead of ->screen_base to fix sparse warnings. > > [ Please see commit 17a7b0b4d974 ("fb.h: Provide alternate screen_base > pointer") for details. ] > > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> > --- > Resend with Tony & linux-arm ML added to Cc:. > > drivers/video/fbdev/wm8505fb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: b/drivers/video/fbdev/wm8505fb.c > =================================> --- a/drivers/video/fbdev/wm8505fb.c > +++ b/drivers/video/fbdev/wm8505fb.c > @@ -339,7 +339,7 @@ static int wm8505fb_probe(struct platfor > > fbi->fb.fix.smem_start = fb_mem_phys; > fbi->fb.fix.smem_len = fb_mem_len; > - fbi->fb.screen_base = fb_mem_virt; > + fbi->fb.screen_buffer = fb_mem_virt; > fbi->fb.screen_size = fb_mem_len; > > fbi->contrast = 0x10; > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types 2020-01-17 18:58 ` Sam Ravnborg @ 2020-03-02 15:42 ` Bartlomiej Zolnierkiewicz 0 siblings, 0 replies; 5+ messages in thread From: Bartlomiej Zolnierkiewicz @ 2020-03-02 15:42 UTC (permalink / raw) To: Sam Ravnborg; +Cc: linux-arm-kernel, linux-fbdev, linux-kernel, dri-devel On 1/17/20 7:58 PM, Sam Ravnborg wrote: > On Thu, Jan 16, 2020 at 03:56:50PM +0100, Bartlomiej Zolnierkiewicz wrote: >> Use ->screen_buffer instead of ->screen_base to fix sparse warnings. >> >> [ Please see commit 17a7b0b4d974 ("fb.h: Provide alternate screen_base >> pointer") for details. ] >> >> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> > Acked-by: Sam Ravnborg <sam@ravnborg.org> Thanks, patch queued for v5.7. Best regards, -- Bartlomiej Zolnierkiewicz Samsung R&D Institute Poland Samsung Electronics ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-03-02 15:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20200116145444eucas1p1b62a023ad7ea3722193c932761eb8493@eucas1p1.samsung.com>
2020-01-16 14:54 ` [PATCH 1/2] video: fbdev: wm8505fb: fix sparse warnings about using incorrect types Bartlomiej Zolnierkiewicz
2020-01-17 18:59 ` Sam Ravnborg
[not found] <CGME20200116145653eucas1p2222fb48dd6fe1023a4152e687ec577d5@eucas1p2.samsung.com>
2020-01-16 14:56 ` Bartlomiej Zolnierkiewicz
2020-01-17 18:58 ` Sam Ravnborg
2020-03-02 15:42 ` Bartlomiej Zolnierkiewicz
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).