diff options
author | Magnus Damm <damm@opensource.se> | 2013-03-06 01:10:06 -0500 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-03-18 08:26:06 -0400 |
commit | 7c9e3c7acd107b967495c44b984f855897caf518 (patch) | |
tree | 9d2090791c31a138c4ffd660b38f13a6bea87937 | |
parent | 1461f8b62ffac3baaa955f74d4fe4a6166bfb4b3 (diff) |
ARM: shmobile: Make r8a7779 INTC irqpin platform data static
The platform data for the INTC irq pin driver
seems to be global symbols, make it static to
allow multi-soc build.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | arch/arm/mach-shmobile/intc-r8a7779.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/intc-r8a7779.c b/arch/arm/mach-shmobile/intc-r8a7779.c index fb0363ca4635..b86dc8908724 100644 --- a/arch/arm/mach-shmobile/intc-r8a7779.c +++ b/arch/arm/mach-shmobile/intc-r8a7779.c | |||
@@ -42,7 +42,7 @@ | |||
42 | #define INT2NTSR0 IOMEM(0xfe700060) | 42 | #define INT2NTSR0 IOMEM(0xfe700060) |
43 | #define INT2NTSR1 IOMEM(0xfe700064) | 43 | #define INT2NTSR1 IOMEM(0xfe700064) |
44 | 44 | ||
45 | struct renesas_intc_irqpin_config irqpin0_platform_data = { | 45 | static struct renesas_intc_irqpin_config irqpin0_platform_data = { |
46 | .irq_base = irq_pin(0), /* IRQ0 -> IRQ3 */ | 46 | .irq_base = irq_pin(0), /* IRQ0 -> IRQ3 */ |
47 | .sense_bitfield_width = 2, | 47 | .sense_bitfield_width = 2, |
48 | }; | 48 | }; |