From: Haavard Skinnemoen Date: Tue, 16 Oct 2007 09:23:51 +0000 (+0200) Subject: [AVR32] pcmcia ioaddr_t should be 32 bits on AVR32 X-Git-Tag: v2.6.24-rc3~10^2~6 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=330a9c1df63ca5043c468698da0a1853fd6778bb;p=linux-2.6 [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 --- diff --git a/include/pcmcia/cs_types.h b/include/pcmcia/cs_types.h index c1d1629fcd..5f38803568 100644 --- a/include/pcmcia/cs_types.h +++ b/include/pcmcia/cs_types.h @@ -21,7 +21,7 @@ #include #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