1
0
Fork 0

[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>
wifi-calibration
Haavard Skinnemoen 2007-10-16 11:23:51 +02:00
parent 99fee6d7e5
commit 330a9c1df6
1 changed files with 1 additions and 1 deletions

View File

@ -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