diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-19 03:01:19 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-19 03:01:19 +0200 |
commit | c63f774ca10efa7cbcbd555c072353e1a7ab7fbe (patch) | |
tree | 69e843c2f25e384929579be2c3768618ea5b90c4 /arch/arm/common/scoop.c | |
parent | x86: be careful about tailcall breakage for sys_open[at] too (diff) | |
parent | [ARM] 3479/1: Corgi SSP: Fix potential concurrent access problem (diff) | |
download | linux-c63f774ca10efa7cbcbd555c072353e1a7ab7fbe.tar.xz linux-c63f774ca10efa7cbcbd555c072353e1a7ab7fbe.zip |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 3479/1: Corgi SSP: Fix potential concurrent access problem
[ARM] 3478/1: SharpSL SCOOP: Fix potenial build failure
Diffstat (limited to 'arch/arm/common/scoop.c')
-rw-r--r-- | arch/arm/common/scoop.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/common/scoop.c b/arch/arm/common/scoop.c index 5e830f444c6c..314ebd3a1d71 100644 --- a/arch/arm/common/scoop.c +++ b/arch/arm/common/scoop.c @@ -18,6 +18,18 @@ #include <asm/io.h> #include <asm/hardware/scoop.h> +/* PCMCIA to Scoop linkage + + There is no easy way to link multiple scoop devices into one + single entity for the pxa2xx_pcmcia device so this structure + is used which is setup by the platform code. + + This file is never modular so this symbol is always + accessile to the board support files. +*/ +struct scoop_pcmcia_config *platform_scoop_config; +EXPORT_SYMBOL(platform_scoop_config); + #define SCOOP_REG(d,adr) (*(volatile unsigned short*)(d +(adr))) struct scoop_dev { |