aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2010-07-29 13:27:09 -0400
committerDominik Brodowski <linux@dominikbrodowski.net>2010-09-29 11:20:23 -0400
commit1ac71e5a35eebee60cdcf15b3980bd94498f037b (patch)
tree22fa9342ccccce6a774af029ce51a526e55f8180 /drivers/usb
parent7feabb6412ea23edd298c0fa90e5aa6733eb4a42 (diff)
pcmcia: convert pcmcia_request_configuration to pcmcia_enable_device
pcmcia_enable_device() now replaces pcmcia_request_configuration(). Instead of config_req_t, all necessary flags are either passed as a parameter to pcmcia_enable_device(), or (in rare circumstances) set in struct pcmcia_device -> flags. With the last remaining user of include/pcmcia/cs.h gone, remove all references. 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 'drivers/usb')
-rw-r--r--drivers/usb/host/sl811_cs.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c
index 590405361bed..744c2cd809f1 100644
--- a/drivers/usb/host/sl811_cs.c
+++ b/drivers/usb/host/sl811_cs.c
@@ -20,7 +20,6 @@
20#include <linux/ioport.h> 20#include <linux/ioport.h>
21#include <linux/platform_device.h> 21#include <linux/platform_device.h>
22 22
23#include <pcmcia/cs.h>
24#include <pcmcia/cistpl.h> 23#include <pcmcia/cistpl.h>
25#include <pcmcia/cisreg.h> 24#include <pcmcia/cisreg.h>
26#include <pcmcia/ds.h> 25#include <pcmcia/ds.h>
@@ -159,7 +158,7 @@ static int sl811_cs_config_check(struct pcmcia_device *p_dev,
159 dflt->vpp1.param[CISTPL_POWER_VNOM]/10000; 158 dflt->vpp1.param[CISTPL_POWER_VNOM]/10000;
160 159
161 /* we need an interrupt */ 160 /* we need an interrupt */
162 p_dev->conf.Attributes |= CONF_ENABLE_IRQ; 161 p_dev->config_flags |= CONF_ENABLE_IRQ;
163 162
164 /* IO window settings */ 163 /* IO window settings */
165 p_dev->resource[0]->end = p_dev->resource[1]->end = 0; 164 p_dev->resource[0]->end = p_dev->resource[1]->end = 0;
@@ -195,7 +194,7 @@ static int sl811_cs_config(struct pcmcia_device *link)
195 if (!link->irq) 194 if (!link->irq)
196 goto failed; 195 goto failed;
197 196
198 ret = pcmcia_request_configuration(link, &link->conf); 197 ret = pcmcia_enable_device(link);
199 if (ret) 198 if (ret)
200 goto failed; 199 goto failed;
201 200
@@ -227,8 +226,6 @@ static int sl811_cs_probe(struct pcmcia_device *link)
227 local->p_dev = link; 226 local->p_dev = link;
228 link->priv = local; 227 link->priv = local;
229 228
230 link->conf.Attributes = 0;
231
232 return sl811_cs_config(link); 229 return sl811_cs_config(link);
233} 230}
234 231