From ad1b40c8109f33c1b3d8ab61404273a89e6afe39 Mon Sep 17 00:00:00 2001 From: Haavard Skinnemoen Date: Mon, 5 Feb 2007 10:36:02 +0100 Subject: [PATCH] PCMCIA: ioaddr_t is 32 bits on AVR32 Define ioaddr_t as u_int for AVR32 just like ARM and MIPS. Signed-off-by: Haavard Skinnemoen --- 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 c1d1629..5f38803 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 -- 1.4.4.4