diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-30 07:13:46 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-09-29 11:20:24 -0400 |
commit | 00990e7ce0b0e596fe41d9c64d6933ea70084003 (patch) | |
tree | 189e0dd92860feba84231c66955749574cac5d6d /drivers/net/wireless/atmel_cs.c | |
parent | 440eed43e2a95bb842488755683716814da10f2b (diff) |
pcmcia: use autoconfiguration feature for ioports and iomem
When CONF_AUTO_SET_IO or CONF_AUTO_SET_IOMEM are set, the corresponding
fields in struct pcmcia_device *p_dev->resource[0,1,2] are set
accordinly. Drivers wishing to override certain settings may do so in
the callback function, but they no longer need to parse the CIS entries
stored in cistpl_cftable_entry_t themselves.
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: linux-bluetooth@vger.kernel.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
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/net/wireless/atmel_cs.c')
-rw-r--r-- | drivers/net/wireless/atmel_cs.c | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/drivers/net/wireless/atmel_cs.c b/drivers/net/wireless/atmel_cs.c index 812decd3fbe9..202938022112 100644 --- a/drivers/net/wireless/atmel_cs.c +++ b/drivers/net/wireless/atmel_cs.c | |||
@@ -154,31 +154,11 @@ static int card_present(void *arg) | |||
154 | return 0; | 154 | return 0; |
155 | } | 155 | } |
156 | 156 | ||
157 | static int atmel_config_check(struct pcmcia_device *p_dev, | 157 | static int atmel_config_check(struct pcmcia_device *p_dev, void *priv_data) |
158 | cistpl_cftable_entry_t *cfg, | ||
159 | cistpl_cftable_entry_t *dflt, | ||
160 | void *priv_data) | ||
161 | { | 158 | { |
162 | if (cfg->index == 0) | 159 | if (p_dev->config_index == 0) |
163 | return -ENODEV; | 160 | return -EINVAL; |
164 | |||
165 | /* IO window settings */ | ||
166 | p_dev->resource[0]->end = p_dev->resource[1]->end = 0; | ||
167 | if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) { | ||
168 | cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io; | ||
169 | p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH; | ||
170 | p_dev->resource[0]->flags |= | ||
171 | pcmcia_io_cfg_data_width(io->flags); | ||
172 | p_dev->resource[0]->start = io->win[0].base; | ||
173 | p_dev->resource[0]->end = io->win[0].len; | ||
174 | if (io->nwin > 1) { | ||
175 | p_dev->resource[1]->flags = p_dev->resource[0]->flags; | ||
176 | p_dev->resource[1]->start = io->win[1].base; | ||
177 | p_dev->resource[1]->end = io->win[1].len; | ||
178 | } | ||
179 | } | ||
180 | 161 | ||
181 | /* This reserves IO space but doesn't actually enable it */ | ||
182 | return pcmcia_request_io(p_dev); | 162 | return pcmcia_request_io(p_dev); |
183 | } | 163 | } |
184 | 164 | ||
@@ -194,7 +174,7 @@ static int atmel_config(struct pcmcia_device *link) | |||
194 | dev_dbg(&link->dev, "atmel_config\n"); | 174 | dev_dbg(&link->dev, "atmel_config\n"); |
195 | 175 | ||
196 | link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP | | 176 | link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP | |
197 | CONF_AUTO_AUDIO; | 177 | CONF_AUTO_AUDIO | CONF_AUTO_SET_IO; |
198 | 178 | ||
199 | /* | 179 | /* |
200 | In this loop, we scan the CIS for configuration table entries, | 180 | In this loop, we scan the CIS for configuration table entries, |