[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>
This commit is contained in:
committed by
Jeff Garzik
parent
8aeabc3750
commit
393da59834
@@ -80,17 +80,8 @@ static dev_link_t *dev_list; /* = NULL */
|
|||||||
/* Function prototypes */
|
/* Function prototypes */
|
||||||
/********************************************************************/
|
/********************************************************************/
|
||||||
|
|
||||||
/* device methods */
|
|
||||||
static int orinoco_cs_hard_reset(struct orinoco_private *priv);
|
|
||||||
|
|
||||||
/* PCMCIA gumpf */
|
|
||||||
static void orinoco_cs_config(dev_link_t * link);
|
|
||||||
static void orinoco_cs_release(dev_link_t *link);
|
static void orinoco_cs_release(dev_link_t *link);
|
||||||
static int orinoco_cs_event(event_t event, int priority,
|
static void orinoco_cs_detach(dev_link_t *link);
|
||||||
event_callback_args_t * args);
|
|
||||||
|
|
||||||
static dev_link_t *orinoco_cs_attach(void);
|
|
||||||
static void orinoco_cs_detach(dev_link_t *);
|
|
||||||
|
|
||||||
/********************************************************************/
|
/********************************************************************/
|
||||||
/* Device methods */
|
/* Device methods */
|
||||||
@@ -675,8 +666,8 @@ static struct pcmcia_driver orinoco_driver = {
|
|||||||
.name = DRIVER_NAME,
|
.name = DRIVER_NAME,
|
||||||
},
|
},
|
||||||
.attach = orinoco_cs_attach,
|
.attach = orinoco_cs_attach,
|
||||||
.event = orinoco_cs_event,
|
|
||||||
.detach = orinoco_cs_detach,
|
.detach = orinoco_cs_detach,
|
||||||
|
.event = orinoco_cs_event,
|
||||||
.id_table = orinoco_cs_ids,
|
.id_table = orinoco_cs_ids,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -89,17 +89,8 @@ static dev_link_t *dev_list; /* = NULL */
|
|||||||
/* Function prototypes */
|
/* Function prototypes */
|
||||||
/********************************************************************/
|
/********************************************************************/
|
||||||
|
|
||||||
/* device methods */
|
|
||||||
static int spectrum_cs_hard_reset(struct orinoco_private *priv);
|
|
||||||
|
|
||||||
/* PCMCIA gumpf */
|
|
||||||
static void spectrum_cs_config(dev_link_t * link);
|
|
||||||
static void spectrum_cs_release(dev_link_t *link);
|
static void spectrum_cs_release(dev_link_t *link);
|
||||||
static int spectrum_cs_event(event_t event, int priority,
|
static void spectrum_cs_detach(dev_link_t *link);
|
||||||
event_callback_args_t * args);
|
|
||||||
|
|
||||||
static dev_link_t *spectrum_cs_attach(void);
|
|
||||||
static void spectrum_cs_detach(dev_link_t *);
|
|
||||||
|
|
||||||
/********************************************************************/
|
/********************************************************************/
|
||||||
/* Firmware downloader */
|
/* Firmware downloader */
|
||||||
@@ -1058,8 +1049,8 @@ static struct pcmcia_driver orinoco_driver = {
|
|||||||
.name = DRIVER_NAME,
|
.name = DRIVER_NAME,
|
||||||
},
|
},
|
||||||
.attach = spectrum_cs_attach,
|
.attach = spectrum_cs_attach,
|
||||||
.event = spectrum_cs_event,
|
|
||||||
.detach = spectrum_cs_detach,
|
.detach = spectrum_cs_detach,
|
||||||
|
.event = spectrum_cs_event,
|
||||||
.id_table = spectrum_cs_ids,
|
.id_table = spectrum_cs_ids,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user