Skip to content

Commit

Permalink
arcfb: kill sparse warning
Browse files Browse the repository at this point in the history
The framebuffer memory is allocated from system RAM (vmalloc'ed). Add __force
annotations.

Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Antonino A. Daplas authored and Linus Torvalds committed May 8, 2007
1 parent 78494dd commit d2e8d36
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/video/arcfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ static void arcfb_lcd_update_page(struct arcfb_par *par, unsigned int upper,
ks108_set_yaddr(par, chipindex, upper/8);

linesize = par->info->var.xres/8;
src = par->info->screen_base + (left/8) + (upper * linesize);
src = (unsigned char __force *) par->info->screen_base + (left/8) +
(upper * linesize);
ks108_set_xaddr(par, chipindex, left);

bitmask=1;
Expand Down Expand Up @@ -477,7 +478,7 @@ static ssize_t arcfb_write(struct file *file, const char __user *buf, size_t cou
if (count) {
char *base_addr;

base_addr = info->screen_base;
base_addr = (char __force *)info->screen_base;
count -= copy_from_user(base_addr + p, buf, count);
*ppos += count;
err = -EFAULT;
Expand Down Expand Up @@ -603,7 +604,7 @@ static int arcfb_remove(struct platform_device *dev)

if (info) {
unregister_framebuffer(info);
vfree(info->screen_base);
vfree((void __force *)info->screen_base);
framebuffer_release(info);
}
return 0;
Expand Down

0 comments on commit d2e8d36

Please sign in to comment.