[PATCH] cyber2000fb.c __iomem annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
e896fd9861
commit
cd0306656c
1 changed files with 2 additions and 2 deletions
|
@ -1512,7 +1512,7 @@ static int cyberpro_pci_enable_mmio(struct cfb_info *cfb)
|
||||||
* I/O cycles storing into a reserved memory space at
|
* I/O cycles storing into a reserved memory space at
|
||||||
* physical address 0x3000000
|
* physical address 0x3000000
|
||||||
*/
|
*/
|
||||||
unsigned char *iop;
|
unsigned char __iomem *iop;
|
||||||
|
|
||||||
iop = ioremap(0x3000000, 0x5000);
|
iop = ioremap(0x3000000, 0x5000);
|
||||||
if (iop == NULL) {
|
if (iop == NULL) {
|
||||||
|
@ -1526,7 +1526,7 @@ static int cyberpro_pci_enable_mmio(struct cfb_info *cfb)
|
||||||
writeb(EXT_BIU_MISC, iop + 0x3ce);
|
writeb(EXT_BIU_MISC, iop + 0x3ce);
|
||||||
writeb(EXT_BIU_MISC_LIN_ENABLE, iop + 0x3cf);
|
writeb(EXT_BIU_MISC_LIN_ENABLE, iop + 0x3cf);
|
||||||
|
|
||||||
iounmap((void *)iop);
|
iounmap(iop);
|
||||||
#else
|
#else
|
||||||
/*
|
/*
|
||||||
* Most other machine types are "normal", so
|
* Most other machine types are "normal", so
|
||||||
|
|
Loading…
Add table
Reference in a new issue