diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-10-16 11:23:51 +0200 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-11-15 13:47:19 +0100 |
commit | 330a9c1df63ca5043c468698da0a1853fd6778bb (patch) | |
tree | 3b6167487c5dbbfddaeaeb27b728222d5f8e9820 /include/pcmcia | |
parent | 99fee6d7e5748d96884667a4628118f7fc130ea0 (diff) | |
download | linux-3.10-330a9c1df63ca5043c468698da0a1853fd6778bb.tar.gz linux-3.10-330a9c1df63ca5043c468698da0a1853fd6778bb.tar.bz2 linux-3.10-330a9c1df63ca5043c468698da0a1853fd6778bb.zip |
[AVR32] pcmcia ioaddr_t should be 32 bits on AVR32
Define ioaddr_t as u_int on AVR32 just like on ARM and MIPS.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'include/pcmcia')
-rw-r--r-- | include/pcmcia/cs_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pcmcia/cs_types.h b/include/pcmcia/cs_types.h index c1d1629fcd2..5f388035687 100644 --- a/include/pcmcia/cs_types.h +++ b/include/pcmcia/cs_types.h @@ -21,7 +21,7 @@ #include <sys/types.h> #endif -#if defined(__arm__) || defined(__mips__) +#if defined(__arm__) || defined(__mips__) || defined(__avr32__) /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ typedef u_int ioaddr_t; #else |