diff options
| author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-27 19:05:34 -0400 |
|---|---|---|
| committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-29 03:43:14 -0400 |
| commit | d39bd56452b509f8d6054883b8a0129950ba50cc (patch) | |
| tree | a73caaee8d691d43bfc23cb21e8c33edf31c4205 | |
| parent | a58357862e71919555ea96cd272e535593a8b3da (diff) | |
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>
| -rw-r--r-- | drivers/pcmcia/au1000_generic.c | 2 | ||||
| -rw-r--r-- | drivers/pcmcia/au1000_generic.h | 2 | ||||
| -rw-r--r-- | drivers/usb/host/sl811_cs.c | 3 | ||||
| -rw-r--r-- | include/pcmcia/cs_types.h | 8 | ||||
| -rw-r--r-- | include/pcmcia/ds.h | 8 |
5 files changed, 12 insertions, 11 deletions
diff --git a/drivers/pcmcia/au1000_generic.c b/drivers/pcmcia/au1000_generic.c index 75e8f8505e47..fc1de46fd20a 100644 --- a/drivers/pcmcia/au1000_generic.c +++ b/drivers/pcmcia/au1000_generic.c | |||
| @@ -292,7 +292,7 @@ au1x00_pcmcia_set_io_map(struct pcmcia_socket *sock, struct pccard_io_map *map) | |||
| 292 | skt->spd_io[map->map] = speed; | 292 | skt->spd_io[map->map] = speed; |
| 293 | } | 293 | } |
| 294 | 294 | ||
| 295 | map->start=(ioaddr_t)(u32)skt->virt_io; | 295 | map->start=(unsigned int)(u32)skt->virt_io; |
| 296 | map->stop=map->start+MAP_SIZE; | 296 | map->stop=map->start+MAP_SIZE; |
| 297 | return 0; | 297 | return 0; |
| 298 | 298 | ||
diff --git a/drivers/pcmcia/au1000_generic.h b/drivers/pcmcia/au1000_generic.h index a53ef5902518..13a4fbc58711 100644 --- a/drivers/pcmcia/au1000_generic.h +++ b/drivers/pcmcia/au1000_generic.h | |||
| @@ -116,7 +116,7 @@ struct au1000_pcmcia_socket { | |||
| 116 | struct resource res_attr; | 116 | struct resource res_attr; |
| 117 | 117 | ||
| 118 | void * virt_io; | 118 | void * virt_io; |
| 119 | ioaddr_t phys_io; | 119 | unsigned int phys_io; |
| 120 | unsigned int phys_attr; | 120 | unsigned int phys_attr; |
| 121 | unsigned int phys_mem; | 121 | unsigned int phys_mem; |
| 122 | unsigned short speed_io, speed_attr, speed_mem; | 122 | unsigned short speed_io, speed_attr, speed_mem; |
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c index ca733b7caea4..516848dd9b48 100644 --- a/drivers/usb/host/sl811_cs.c +++ b/drivers/usb/host/sl811_cs.c | |||
| @@ -112,7 +112,8 @@ static struct platform_device platform_dev = { | |||
| 112 | .num_resources = ARRAY_SIZE(resources), | 112 | .num_resources = ARRAY_SIZE(resources), |
| 113 | }; | 113 | }; |
| 114 | 114 | ||
| 115 | static int sl811_hc_init(struct device *parent, ioaddr_t base_addr, int irq) | 115 | static int sl811_hc_init(struct device *parent, resource_size_t base_addr, |
| 116 | int irq) | ||
| 116 | { | 117 | { |
| 117 | if (platform_dev.dev.parent) | 118 | if (platform_dev.dev.parent) |
| 118 | return -EBUSY; | 119 | return -EBUSY; |
diff --git a/include/pcmcia/cs_types.h b/include/pcmcia/cs_types.h index f402a0f435b4..315965a37930 100644 --- a/include/pcmcia/cs_types.h +++ b/include/pcmcia/cs_types.h | |||
| @@ -21,14 +21,6 @@ | |||
| 21 | #include <sys/types.h> | 21 | #include <sys/types.h> |
| 22 | #endif | 22 | #endif |
| 23 | 23 | ||
| 24 | #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \ | ||
| 25 | defined(__bfin__) | ||
| 26 | /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ | ||
| 27 | typedef u_int ioaddr_t; | ||
| 28 | #else | ||
| 29 | typedef u_short ioaddr_t; | ||
| 30 | #endif | ||
| 31 | |||
| 32 | typedef u_short socket_t; | 24 | typedef u_short socket_t; |
| 33 | typedef u_int event_t; | 25 | typedef u_int event_t; |
| 34 | typedef u_char cisdata_t; | 26 | typedef u_char cisdata_t; |
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h index bdf7d5e474f7..279df0fb036e 100644 --- a/include/pcmcia/ds.h +++ b/include/pcmcia/ds.h | |||
| @@ -171,6 +171,14 @@ const char *pcmcia_error_ret(int ret); | |||
| 171 | 171 | ||
| 172 | #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__) | 172 | #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__) |
| 173 | 173 | ||
| 174 | #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \ | ||
| 175 | defined(__bfin__) | ||
| 176 | /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ | ||
| 177 | typedef u_int ioaddr_t; | ||
| 178 | #else | ||
| 179 | typedef u_short ioaddr_t; | ||
| 180 | #endif | ||
| 181 | |||
| 174 | /* for AdjustResourceInfo */ | 182 | /* for AdjustResourceInfo */ |
| 175 | typedef struct adjust_t { | 183 | typedef struct adjust_t { |
| 176 | u_int Action; | 184 | u_int Action; |
