diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-28 01:05:34 +0200 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-29 09:43:14 +0200 |
commit | d39bd56452b509f8d6054883b8a0129950ba50cc (patch) | |
tree | a73caaee8d691d43bfc23cb21e8c33edf31c4205 /include/pcmcia/ds.h | |
parent | a58357862e71919555ea96cd272e535593a8b3da (diff) | |
download | kernel_samsung_espresso10-d39bd56452b509f8d6054883b8a0129950ba50cc.tar.gz kernel_samsung_espresso10-d39bd56452b509f8d6054883b8a0129950ba50cc.tar.bz2 kernel_samsung_espresso10-d39bd56452b509f8d6054883b8a0129950ba50cc.zip |
pcmcia: encapsulate ioaddr_t
By now, ioaddr_t should only be used by the deprecated ioctl, as it does not
correctly reflect the maximum ioport range at least on some architectures.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'include/pcmcia/ds.h')
-rw-r--r-- | include/pcmcia/ds.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index bdf7d5e474f..279df0fb036 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h @@ -171,6 +171,14 @@ const char *pcmcia_error_ret(int ret); #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__) +#if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \ + defined(__bfin__) +/* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ +typedef u_int ioaddr_t; +#else +typedef u_short ioaddr_t; +#endif + /* for AdjustResourceInfo */ typedef struct adjust_t { u_int Action; |