diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2010-05-02 23:28:58 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2010-05-02 23:28:58 -0400 |
commit | df2071bd081408318d659cd14a9cf6ff23d874c9 (patch) | |
tree | b31291b5fd4b9f84c629833afbfaa8d431857475 /arch/arm/mach-sa1100/neponset.c | |
parent | 97e3d94aac1c3e95bd04d1b186479a4df3663ab8 (diff) | |
parent | be1066bbcd443a65df312fdecea7e4959adedb45 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'arch/arm/mach-sa1100/neponset.c')
-rw-r--r-- | arch/arm/mach-sa1100/neponset.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-sa1100/neponset.c b/arch/arm/mach-sa1100/neponset.c index 6ccd175bc4cf..c601a75a333d 100644 --- a/arch/arm/mach-sa1100/neponset.c +++ b/arch/arm/mach-sa1100/neponset.c | |||
@@ -8,7 +8,6 @@ | |||
8 | #include <linux/ioport.h> | 8 | #include <linux/ioport.h> |
9 | #include <linux/serial_core.h> | 9 | #include <linux/serial_core.h> |
10 | #include <linux/platform_device.h> | 10 | #include <linux/platform_device.h> |
11 | #include <linux/slab.h> | ||
12 | 11 | ||
13 | #include <mach/hardware.h> | 12 | #include <mach/hardware.h> |
14 | #include <asm/mach-types.h> | 13 | #include <asm/mach-types.h> |
@@ -241,6 +240,10 @@ static struct resource sa1111_resources[] = { | |||
241 | }, | 240 | }, |
242 | }; | 241 | }; |
243 | 242 | ||
243 | static struct sa1111_platform_data sa1111_info = { | ||
244 | .irq_base = IRQ_BOARD_END, | ||
245 | }; | ||
246 | |||
244 | static u64 sa1111_dmamask = 0xffffffffUL; | 247 | static u64 sa1111_dmamask = 0xffffffffUL; |
245 | 248 | ||
246 | static struct platform_device sa1111_device = { | 249 | static struct platform_device sa1111_device = { |
@@ -249,6 +252,7 @@ static struct platform_device sa1111_device = { | |||
249 | .dev = { | 252 | .dev = { |
250 | .dma_mask = &sa1111_dmamask, | 253 | .dma_mask = &sa1111_dmamask, |
251 | .coherent_dma_mask = 0xffffffff, | 254 | .coherent_dma_mask = 0xffffffff, |
255 | .platform_data = &sa1111_info, | ||
252 | }, | 256 | }, |
253 | .num_resources = ARRAY_SIZE(sa1111_resources), | 257 | .num_resources = ARRAY_SIZE(sa1111_resources), |
254 | .resource = sa1111_resources, | 258 | .resource = sa1111_resources, |