diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-09-11 08:27:21 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-09-21 14:03:56 -0400 |
commit | 3904a39321422d424f790d18a4746b99e1aed0e9 (patch) | |
tree | 768f0a0138b3ef2e599fe8ad53bd7677b21241a6 /arch/arm/mach-orion5x/irq.c | |
parent | 383b99610e6084878930d4e4682dfc5e9141b038 (diff) |
arm: mach-orion5x: use IOMEM() for base address definitions
We now define all virtual base address constants using IOMEM() so that
those are naturally typed as void __iomem pointers, and we do the
necessary adjustements in the mach-orion5x code.
Note that we introduce a few temporary additional "unsigned long"
casts when calling into plat-orion functions. Those are removed by
followup patches converting plat-orion functions to void __iomem
pointers as well.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-orion5x/irq.c')
-rw-r--r-- | arch/arm/mach-orion5x/irq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-orion5x/irq.c b/arch/arm/mach-orion5x/irq.c index 17da7091d310..bf9ff4f00818 100644 --- a/arch/arm/mach-orion5x/irq.c +++ b/arch/arm/mach-orion5x/irq.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/gpio.h> | 12 | #include <linux/gpio.h> |
13 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
14 | #include <linux/irq.h> | 14 | #include <linux/irq.h> |
15 | #include <linux/io.h> | ||
15 | #include <mach/bridge-regs.h> | 16 | #include <mach/bridge-regs.h> |
16 | #include <plat/irq.h> | 17 | #include <plat/irq.h> |
17 | 18 | ||
@@ -24,11 +25,11 @@ static int __initdata gpio0_irqs[4] = { | |||
24 | 25 | ||
25 | void __init orion5x_init_irq(void) | 26 | void __init orion5x_init_irq(void) |
26 | { | 27 | { |
27 | orion_irq_init(0, (void __iomem *)MAIN_IRQ_MASK); | 28 | orion_irq_init(0, MAIN_IRQ_MASK); |
28 | 29 | ||
29 | /* | 30 | /* |
30 | * Initialize gpiolib for GPIOs 0-31. | 31 | * Initialize gpiolib for GPIOs 0-31. |
31 | */ | 32 | */ |
32 | orion_gpio_init(NULL, 0, 32, (void __iomem *)GPIO_VIRT_BASE, 0, | 33 | orion_gpio_init(NULL, 0, 32, GPIO_VIRT_BASE, 0, |
33 | IRQ_ORION5X_GPIO_START, gpio0_irqs); | 34 | IRQ_ORION5X_GPIO_START, gpio0_irqs); |
34 | } | 35 | } |