Skip to content

Commit

Permalink
[ARM] Fix arch-realview/system.h to use __io_address()
Browse files Browse the repository at this point in the history
Move __io_address to arch-realview/hardware.h, drop core.h from platsmp.c
and localtimer.c, and include asm/io.h where required.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Nov 16, 2005
1 parent f6ff56c commit ce07d90
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions arch/arm/mach-realview/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
#include <asm/leds.h>
#include <asm/io.h>

#define __io_address(n) __io(IO_ADDRESS(n))

extern struct sys_timer realview_timer;

#define AMBA_DEVICE(name,busid,base,plat) \
Expand Down
2 changes: 0 additions & 2 deletions arch/arm/mach-realview/localtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
#include <asm/io.h>
#include <asm/irq.h>

#include "core.h"

#define TWD_BASE(cpu) (__io_address(REALVIEW_TWD_BASE) + \
((cpu) * REALVIEW_TWD_SIZE))

Expand Down
3 changes: 1 addition & 2 deletions arch/arm/mach-realview/platsmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
#include <asm/cacheflush.h>
#include <asm/hardware/arm_scu.h>
#include <asm/hardware.h>

#include "core.h"
#include <asm/io.h>

extern void realview_secondary_startup(void);

Expand Down
1 change: 1 addition & 0 deletions include/asm-arm/arch-realview/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@

/* macro to get at IO space when running virtually */
#define IO_ADDRESS(x) (((x) & 0x0fffffff) + (((x) >> 4) & 0x0f000000) + 0xf0000000)
#define __io_address(n) __io(IO_ADDRESS(n))

#endif
2 changes: 1 addition & 1 deletion include/asm-arm/arch-realview/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static inline void arch_idle(void)

static inline void arch_reset(char mode)
{
unsigned int hdr_ctrl = (IO_ADDRESS(REALVIEW_SYS_BASE) + REALVIEW_SYS_RESETCTL_OFFSET);
void __iomem *hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_RESETCTL_OFFSET;
unsigned int val;

/*
Expand Down

0 comments on commit ce07d90

Please sign in to comment.