Skip to content

Commit

Permalink
[AVR32] pcmcia ioaddr_t should be 32 bits on AVR32
Browse files Browse the repository at this point in the history
Define ioaddr_t as u_int on AVR32 just like on ARM and MIPS.

Signed-off-by: Haavard Skinnemoen <[email protected]>
  • Loading branch information
Haavard Skinnemoen committed Nov 15, 2007
1 parent 99fee6d commit 330a9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pcmcia/cs_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 330a9c1

Please sign in to comment.