Skip to content

Commit

Permalink
[ARM] Fix iop32x/iop33x build
Browse files Browse the repository at this point in the history
arch/arm/plat-iop/io.c:26: error: conflicting types for '__iop3xx_ioremap'

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed May 11, 2007
1 parent 3b11e44 commit f75fd96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/asm-arm/arch-iop13xx/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

extern void __iomem * __iop13xx_io(unsigned long io_addr);
extern void __iomem *__iop13xx_ioremap(unsigned long cookie, size_t size,
unsigned long flags);
unsigned int mtype);
extern void __iop13xx_iounmap(void __iomem *addr);

extern u32 iop13xx_atue_mem_base;
Expand Down
2 changes: 1 addition & 1 deletion include/asm-arm/arch-iop32x/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <asm/hardware.h>

extern void __iomem *__iop3xx_ioremap(unsigned long cookie, size_t size,
unsigned long flags);
unsigned int mtype);
extern void __iop3xx_iounmap(void __iomem *addr);

#define IO_SPACE_LIMIT 0xffffffff
Expand Down
2 changes: 1 addition & 1 deletion include/asm-arm/arch-iop33x/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <asm/hardware.h>

extern void __iomem *__iop3xx_ioremap(unsigned long cookie, size_t size,
unsigned long flags);
unsigned int mtype);
extern void __iop3xx_iounmap(void __iomem *addr);

#define IO_SPACE_LIMIT 0xffffffff
Expand Down

0 comments on commit f75fd96

Please sign in to comment.