diff options
Diffstat (limited to 'drivers/parport/parport_cs.c')
-rw-r--r-- | drivers/parport/parport_cs.c | 34 |
1 files changed, 11 insertions, 23 deletions
diff --git a/drivers/parport/parport_cs.c b/drivers/parport/parport_cs.c index 8c2a4733bc19..3730184a04a3 100644 --- a/drivers/parport/parport_cs.c +++ b/drivers/parport/parport_cs.c | |||
@@ -100,9 +100,7 @@ static int parport_probe(struct pcmcia_device *link) | |||
100 | link->priv = info; | 100 | link->priv = info; |
101 | info->p_dev = link; | 101 | info->p_dev = link; |
102 | 102 | ||
103 | link->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; | 103 | link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO; |
104 | link->resource[1]->flags |= IO_DATA_PATH_WIDTH_8; | ||
105 | link->config_flags |= CONF_ENABLE_IRQ; | ||
106 | 104 | ||
107 | return parport_config(link); | 105 | return parport_config(link); |
108 | } /* parport_attach */ | 106 | } /* parport_attach */ |
@@ -133,27 +131,14 @@ static void parport_detach(struct pcmcia_device *link) | |||
133 | 131 | ||
134 | ======================================================================*/ | 132 | ======================================================================*/ |
135 | 133 | ||
136 | static int parport_config_check(struct pcmcia_device *p_dev, | 134 | static int parport_config_check(struct pcmcia_device *p_dev, void *priv_data) |
137 | cistpl_cftable_entry_t *cfg, | ||
138 | cistpl_cftable_entry_t *dflt, | ||
139 | void *priv_data) | ||
140 | { | 135 | { |
141 | if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) { | 136 | p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH; |
142 | cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io; | 137 | p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8; |
143 | p_dev->io_lines = io->flags & CISTPL_IO_LINES_MASK; | 138 | p_dev->resource[1]->flags &= ~IO_DATA_PATH_WIDTH; |
144 | if (epp_mode) | 139 | p_dev->resource[1]->flags |= IO_DATA_PATH_WIDTH_8; |
145 | p_dev->config_index |= FORCE_EPP_MODE; | 140 | |
146 | p_dev->resource[0]->start = io->win[0].base; | 141 | return pcmcia_request_io(p_dev); |
147 | p_dev->resource[0]->end = io->win[0].len; | ||
148 | if (io->nwin == 2) { | ||
149 | p_dev->resource[1]->start = io->win[1].base; | ||
150 | p_dev->resource[1]->end = io->win[1].len; | ||
151 | } | ||
152 | if (pcmcia_request_io(p_dev) != 0) | ||
153 | return -ENODEV; | ||
154 | return 0; | ||
155 | } | ||
156 | return -ENODEV; | ||
157 | } | 142 | } |
158 | 143 | ||
159 | static int parport_config(struct pcmcia_device *link) | 144 | static int parport_config(struct pcmcia_device *link) |
@@ -164,6 +149,9 @@ static int parport_config(struct pcmcia_device *link) | |||
164 | 149 | ||
165 | dev_dbg(&link->dev, "parport_config\n"); | 150 | dev_dbg(&link->dev, "parport_config\n"); |
166 | 151 | ||
152 | if (epp_mode) | ||
153 | link->config_index |= FORCE_EPP_MODE; | ||
154 | |||
167 | ret = pcmcia_loop_config(link, parport_config_check, NULL); | 155 | ret = pcmcia_loop_config(link, parport_config_check, NULL); |
168 | if (ret) | 156 | if (ret) |
169 | goto failed; | 157 | goto failed; |