aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/orinoco_cs.c
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2005-09-23 04:18:06 -0400
committerJeff Garzik <jgarzik@pobox.com>2005-09-23 04:36:13 -0400
commit393da59834eef526fc6fd0df321e94344d7c49e3 (patch)
treebf4285c3f2064b56c2b188d4f24fe2b3d740290b /drivers/net/wireless/orinoco_cs.c
parent8aeabc375041a5fe9c9be315472497b2e0547eed (diff)
[PATCH] orinoco: Remove unneeded forward declarations.
Signed-off-by: Pavel Roskin <proski@gnu.org> Remove unneeded forward declarations. Also reorder struct pcmcia_driver initialization to keep attach and detach together. Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/wireless/orinoco_cs.c')
-rw-r--r--drivers/net/wireless/orinoco_cs.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/drivers/net/wireless/orinoco_cs.c b/drivers/net/wireless/orinoco_cs.c
index 195c530f209f..dc1128a00971 100644
--- a/drivers/net/wireless/orinoco_cs.c
+++ b/drivers/net/wireless/orinoco_cs.c
@@ -80,17 +80,8 @@ static dev_link_t *dev_list; /* = NULL */
80/* Function prototypes */ 80/* Function prototypes */
81/********************************************************************/ 81/********************************************************************/
82 82
83/* device methods */ 83static void orinoco_cs_release(dev_link_t *link);
84static int orinoco_cs_hard_reset(struct orinoco_private *priv); 84static void orinoco_cs_detach(dev_link_t *link);
85
86/* PCMCIA gumpf */
87static void orinoco_cs_config(dev_link_t * link);
88static void orinoco_cs_release(dev_link_t * link);
89static int orinoco_cs_event(event_t event, int priority,
90 event_callback_args_t * args);
91
92static dev_link_t *orinoco_cs_attach(void);
93static void orinoco_cs_detach(dev_link_t *);
94 85
95/********************************************************************/ 86/********************************************************************/
96/* Device methods */ 87/* Device methods */
@@ -675,8 +666,8 @@ static struct pcmcia_driver orinoco_driver = {
675 .name = DRIVER_NAME, 666 .name = DRIVER_NAME,
676 }, 667 },
677 .attach = orinoco_cs_attach, 668 .attach = orinoco_cs_attach,
678 .event = orinoco_cs_event,
679 .detach = orinoco_cs_detach, 669 .detach = orinoco_cs_detach,
670 .event = orinoco_cs_event,
680 .id_table = orinoco_cs_ids, 671 .id_table = orinoco_cs_ids,
681}; 672};
682 673