aboutsummaryrefslogtreecommitdiffstats
path: root/include/pcmcia
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2010-07-29 12:35:47 -0400
committerDominik Brodowski <linux@dominikbrodowski.net>2010-09-29 11:20:22 -0400
commit7feabb6412ea23edd298c0fa90e5aa6733eb4a42 (patch)
treebfafe961aeb5449a71fbb389172b3a6c68b56e7c /include/pcmcia
parent37979e1546a790c44adbc7f27a85569944480ebc (diff)
pcmcia: move config_{base,index,regs} to struct pcmcia_device
Several drivers prefer to explicitly set config_{base,index,regs}, formerly known as ConfigBase, ConfigIndex and Present. Instead of passing these values inside config_req_t, store it in struct pcmcia_device. CC: netdev@vger.kernel.org CC: linux-wireless@vger.kernel.org CC: linux-ide@vger.kernel.org CC: linux-usb@vger.kernel.org CC: laforge@gnumonks.org CC: linux-mtd@lists.infradead.org CC: alsa-devel@alsa-project.org CC: linux-serial@vger.kernel.org CC: Jiri Kosina <jkosina@suse.cz> CC: linux-scsi@vger.kernel.org Acked-by: Gustavo F. Padovan <padovan@profusion.mobi> (for drivers/bluetooth) Tested-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'include/pcmcia')
-rw-r--r--include/pcmcia/cs.h15
-rw-r--r--include/pcmcia/ds.h14
2 files changed, 14 insertions, 15 deletions
diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h
index 674edbc9ebef..47b6092c4ed6 100644
--- a/include/pcmcia/cs.h
+++ b/include/pcmcia/cs.h
@@ -22,9 +22,6 @@
22/* For RequestConfiguration */ 22/* For RequestConfiguration */
23typedef struct config_req_t { 23typedef struct config_req_t {
24 u_int Attributes; 24 u_int Attributes;
25 u_int ConfigBase;
26 u_char ConfigIndex;
27 u_int Present;
28} config_req_t; 25} config_req_t;
29 26
30/* Attributes for RequestConfiguration */ 27/* Attributes for RequestConfiguration */
@@ -35,16 +32,4 @@ typedef struct config_req_t {
35#define CONF_ENABLE_ESR 0x10 32#define CONF_ENABLE_ESR 0x10
36#define CONF_VALID_CLIENT 0x100 33#define CONF_VALID_CLIENT 0x100
37 34
38/* Configuration registers present */
39#define PRESENT_OPTION 0x001
40#define PRESENT_STATUS 0x002
41#define PRESENT_PIN_REPLACE 0x004
42#define PRESENT_COPY 0x008
43#define PRESENT_EXT_STATUS 0x010
44#define PRESENT_IOBASE_0 0x020
45#define PRESENT_IOBASE_1 0x040
46#define PRESENT_IOBASE_2 0x080
47#define PRESENT_IOBASE_3 0x100
48#define PRESENT_IOSIZE 0x200
49
50#endif /* _LINUX_CS_H */ 35#endif /* _LINUX_CS_H */
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h
index 6137fbc34abd..bc28f96d0b5a 100644
--- a/include/pcmcia/ds.h
+++ b/include/pcmcia/ds.h
@@ -97,6 +97,9 @@ struct pcmcia_device {
97 unsigned int vpp; 97 unsigned int vpp;
98 98
99 unsigned int io_lines; /* number of I/O lines */ 99 unsigned int io_lines; /* number of I/O lines */
100 unsigned int config_base;
101 unsigned int config_index;
102 unsigned int config_regs; /* PRESENT_ flags below */
100 103
101 /* Is the device suspended? */ 104 /* Is the device suspended? */
102 u16 suspended:1; 105 u16 suspended:1;
@@ -250,6 +253,17 @@ static inline int pcmcia_io_cfg_data_width(unsigned int flags)
250 0x0c -> 2 253 0x0c -> 2
251 0x10 -> 3 */ 254 0x10 -> 3 */
252 255
256/* config_reg{ister}s present for this PCMCIA device */
257#define PRESENT_OPTION 0x001
258#define PRESENT_STATUS 0x002
259#define PRESENT_PIN_REPLACE 0x004
260#define PRESENT_COPY 0x008
261#define PRESENT_EXT_STATUS 0x010
262#define PRESENT_IOBASE_0 0x020
263#define PRESENT_IOBASE_1 0x040
264#define PRESENT_IOBASE_2 0x080
265#define PRESENT_IOBASE_3 0x100
266#define PRESENT_IOSIZE 0x200
253 267
254#endif /* __KERNEL__ */ 268#endif /* __KERNEL__ */
255 269