aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/atmel_cs.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/atmel_cs.c')
-rw-r--r--drivers/net/wireless/atmel_cs.c28
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
157static int atmel_config_check(struct pcmcia_device *p_dev, 157static 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,