Commit 4b684d78 authored by David S. Miller's avatar David S. Miller

[ATY]: Fix build on sparc after viro sparse changes.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5f3d1af0
...@@ -1978,7 +1978,8 @@ int __init atyfb_do_init(void) ...@@ -1978,7 +1978,8 @@ int __init atyfb_do_init(void)
/* /*
* Map memory-mapped registers. * Map memory-mapped registers.
*/ */
default_par->ati_regbase = addr + 0x7ffc00UL; default_par->ati_regbase = (void __iomem *)
(addr + 0x7ffc00UL);
info->fix.mmio_start = addr + 0x7ffc00UL; info->fix.mmio_start = addr + 0x7ffc00UL;
/* /*
...@@ -2289,7 +2290,8 @@ int __init atyfb_do_init(void) ...@@ -2289,7 +2290,8 @@ int __init atyfb_do_init(void)
default_par->mmap_map[0].voff + default_par->mmap_map[0].voff +
info->fix.smem_len; info->fix.smem_len;
default_par->mmap_map[1].poff = default_par->mmap_map[1].poff =
default_par->ati_regbase & PAGE_MASK; ((unsigned long) default_par->ati_regbase &
PAGE_MASK);
default_par->mmap_map[1].size = PAGE_SIZE; default_par->mmap_map[1].size = PAGE_SIZE;
default_par->mmap_map[1].prot_mask = _PAGE_CACHE; default_par->mmap_map[1].prot_mask = _PAGE_CACHE;
default_par->mmap_map[1].prot_flag = _PAGE_E; default_par->mmap_map[1].prot_flag = _PAGE_E;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment