diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-21 16:38:13 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-07-30 15:07:39 -0400 |
commit | ac8b422838046ffc26be4874a3cbae0d313f4209 (patch) | |
tree | 936c8fc9a45ca7a2973c878fc0e20bbae288e5f0 /drivers/usb/host/sl811_cs.c | |
parent | ce3f9d71bd9c4268698109ad425625a2a8f51e22 (diff) |
pcmcia: remove cs_types.h
Remove cs_types.h which is no longer needed: Most definitions aren't
used at all, a few can be made away with, and two remaining definitions
(typedefs, unfortunatley) may be moved to more specific places.
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
Acked-by: Marcel Holtmann <marcel@holtmann.org> (for drivers/bluetooth/)
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/usb/host/sl811_cs.c')
-rw-r--r-- | drivers/usb/host/sl811_cs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/host/sl811_cs.c b/drivers/usb/host/sl811_cs.c index 58cb73c8420a..acb7e255a837 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_types.h> | ||
24 | #include <pcmcia/cs.h> | 23 | #include <pcmcia/cs.h> |
25 | #include <pcmcia/cistpl.h> | 24 | #include <pcmcia/cistpl.h> |
26 | #include <pcmcia/cisreg.h> | 25 | #include <pcmcia/cisreg.h> |
@@ -43,8 +42,6 @@ MODULE_LICENSE("GPL"); | |||
43 | /* VARIABLES */ | 42 | /* VARIABLES */ |
44 | /*====================================================================*/ | 43 | /*====================================================================*/ |
45 | 44 | ||
46 | static const char driver_name[DEV_NAME_LEN] = "sl811_cs"; | ||
47 | |||
48 | typedef struct local_info_t { | 45 | typedef struct local_info_t { |
49 | struct pcmcia_device *p_dev; | 46 | struct pcmcia_device *p_dev; |
50 | } local_info_t; | 47 | } local_info_t; |
@@ -246,7 +243,7 @@ MODULE_DEVICE_TABLE(pcmcia, sl811_ids); | |||
246 | static struct pcmcia_driver sl811_cs_driver = { | 243 | static struct pcmcia_driver sl811_cs_driver = { |
247 | .owner = THIS_MODULE, | 244 | .owner = THIS_MODULE, |
248 | .drv = { | 245 | .drv = { |
249 | .name = (char *)driver_name, | 246 | .name = "sl811_cs", |
250 | }, | 247 | }, |
251 | .probe = sl811_cs_probe, | 248 | .probe = sl811_cs_probe, |
252 | .remove = sl811_cs_detach, | 249 | .remove = sl811_cs_detach, |