diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2014-06-28 10:34:06 +0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-07-04 11:04:45 +0300 |
commit | b1f46dd1079d78aa46b8bc740d3e24117335f150 (patch) | |
tree | e9a583e1af368930ec0415c396d8ffdce2e57511 /drivers/video | |
parent | 6471b30f4220d4bf899efe347a47856db045f53e (diff) | |
download | linux-stable-b1f46dd1079d78aa46b8bc740d3e24117335f150.tar.gz linux-stable-b1f46dd1079d78aa46b8bc740d3e24117335f150.tar.bz2 linux-stable-b1f46dd1079d78aa46b8bc740d3e24117335f150.zip |
video: clps711x: Fix sparse warnings
This patch fixes below warning:
drivers/video/fbdev/clps711x-fb.c:314:17: warning: incorrect type in initializer (different address spaces)
drivers/video/fbdev/clps711x-fb.c:314:17: expected void *__p
drivers/video/fbdev/clps711x-fb.c:314:17: got char [noderef] <asn:2>*screen_base
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fbdev/clps711x-fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/clps711x-fb.c b/drivers/video/fbdev/clps711x-fb.c index 4d17fbb3ffab..49a7bb4ef02f 100644 --- a/drivers/video/fbdev/clps711x-fb.c +++ b/drivers/video/fbdev/clps711x-fb.c @@ -311,7 +311,7 @@ static int clps711x_fb_probe(struct platform_device *pdev) /* Setup start FB address */ writeb(info->fix.smem_start >> 28, cfb->base + CLPS711X_FBADDR); /* Clean FB memory */ - memset(info->screen_base, 0, cfb->buffsize); + memset_io(info->screen_base, 0, cfb->buffsize); } cfb->lcd_pwr = devm_regulator_get(dev, "lcd"); |