diff options
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/sl811_cs.c | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c index d9606293c1af..81d7eeacdf6a 100644 --- a/drivers/usb/host/sl811_cs.c +++ b/drivers/usb/host/sl811_cs.c | |||
@@ -131,28 +131,12 @@ static void sl811_cs_release(struct pcmcia_device * link) | |||
131 | platform_device_unregister(&platform_dev); | 131 | platform_device_unregister(&platform_dev); |
132 | } | 132 | } |
133 | 133 | ||
134 | static int sl811_cs_config_check(struct pcmcia_device *p_dev, | 134 | static int sl811_cs_config_check(struct pcmcia_device *p_dev, void *priv_data) |
135 | cistpl_cftable_entry_t *cfg, | ||
136 | cistpl_cftable_entry_t *dflt, | ||
137 | void *priv_data) | ||
138 | { | 135 | { |
139 | if (cfg->index == 0) | 136 | if (p_dev->config_index == 0) |
140 | return -ENODEV; | 137 | return -EINVAL; |
141 | 138 | ||
142 | /* IO window settings */ | 139 | return pcmcia_request_io(p_dev); |
143 | p_dev->resource[0]->end = p_dev->resource[1]->end = 0; | ||
144 | if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) { | ||
145 | cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io; | ||
146 | p_dev->io_lines = io->flags & CISTPL_IO_LINES_MASK; | ||
147 | |||
148 | p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; | ||
149 | p_dev->resource[0]->start = io->win[0].base; | ||
150 | p_dev->resource[0]->end = io->win[0].len; | ||
151 | |||
152 | return pcmcia_request_io(p_dev); | ||
153 | } | ||
154 | pcmcia_disable_device(p_dev); | ||
155 | return -ENODEV; | ||
156 | } | 140 | } |
157 | 141 | ||
158 | 142 | ||
@@ -164,7 +148,7 @@ static int sl811_cs_config(struct pcmcia_device *link) | |||
164 | dev_dbg(&link->dev, "sl811_cs_config\n"); | 148 | dev_dbg(&link->dev, "sl811_cs_config\n"); |
165 | 149 | ||
166 | link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP | | 150 | link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP | |
167 | CONF_AUTO_CHECK_VCC; | 151 | CONF_AUTO_CHECK_VCC | CONF_AUTO_SET_IO; |
168 | 152 | ||
169 | if (pcmcia_loop_config(link, sl811_cs_config_check, NULL)) | 153 | if (pcmcia_loop_config(link, sl811_cs_config_check, NULL)) |
170 | goto failed; | 154 | goto failed; |