mirror of https://gitee.com/openkylin/linux.git
staging: comedi: ni_labpc_cs: move pcmcia_driver functions
For aesthetic reasons, move all the pcmcia_driver functions so they are near the pcmcia_driver declaration. This also removes the need for some of the forward declarations. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4fc76ea03f
commit
00cefaa562
|
@ -154,45 +154,11 @@ static int labpc_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||||
return labpc_common_attach(dev, iobase, irq, 0);
|
return labpc_common_attach(dev, iobase, irq, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void labpc_config(struct pcmcia_device *link);
|
|
||||||
|
|
||||||
static int labpc_cs_attach(struct pcmcia_device *);
|
|
||||||
static void labpc_cs_detach(struct pcmcia_device *);
|
|
||||||
|
|
||||||
struct local_info_t {
|
struct local_info_t {
|
||||||
struct pcmcia_device *link;
|
struct pcmcia_device *link;
|
||||||
struct bus_operations *bus;
|
struct bus_operations *bus;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int labpc_cs_attach(struct pcmcia_device *link)
|
|
||||||
{
|
|
||||||
struct local_info_t *local;
|
|
||||||
|
|
||||||
dev_dbg(&link->dev, "labpc_cs_attach()\n");
|
|
||||||
|
|
||||||
/* Allocate space for private device-specific data */
|
|
||||||
local = kzalloc(sizeof(struct local_info_t), GFP_KERNEL);
|
|
||||||
if (!local)
|
|
||||||
return -ENOMEM;
|
|
||||||
local->link = link;
|
|
||||||
link->priv = local;
|
|
||||||
|
|
||||||
pcmcia_cur_dev = link;
|
|
||||||
|
|
||||||
labpc_config(link);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
} /* labpc_cs_attach */
|
|
||||||
|
|
||||||
static void labpc_cs_detach(struct pcmcia_device *link)
|
|
||||||
{
|
|
||||||
pcmcia_disable_device(link);
|
|
||||||
|
|
||||||
/* This points to the parent local_info_t struct (may be null) */
|
|
||||||
kfree(link->priv);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
static int labpc_pcmcia_config_loop(struct pcmcia_device *p_dev,
|
static int labpc_pcmcia_config_loop(struct pcmcia_device *p_dev,
|
||||||
void *priv_data)
|
void *priv_data)
|
||||||
{
|
{
|
||||||
|
@ -202,7 +168,6 @@ static int labpc_pcmcia_config_loop(struct pcmcia_device *p_dev,
|
||||||
return pcmcia_request_io(p_dev);
|
return pcmcia_request_io(p_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void labpc_config(struct pcmcia_device *link)
|
static void labpc_config(struct pcmcia_device *link)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -231,6 +196,34 @@ static void labpc_config(struct pcmcia_device *link)
|
||||||
pcmcia_disable_device(link);
|
pcmcia_disable_device(link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int labpc_cs_attach(struct pcmcia_device *link)
|
||||||
|
{
|
||||||
|
struct local_info_t *local;
|
||||||
|
|
||||||
|
dev_dbg(&link->dev, "labpc_cs_attach()\n");
|
||||||
|
|
||||||
|
/* Allocate space for private device-specific data */
|
||||||
|
local = kzalloc(sizeof(struct local_info_t), GFP_KERNEL);
|
||||||
|
if (!local)
|
||||||
|
return -ENOMEM;
|
||||||
|
local->link = link;
|
||||||
|
link->priv = local;
|
||||||
|
|
||||||
|
pcmcia_cur_dev = link;
|
||||||
|
|
||||||
|
labpc_config(link);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void labpc_cs_detach(struct pcmcia_device *link)
|
||||||
|
{
|
||||||
|
pcmcia_disable_device(link);
|
||||||
|
|
||||||
|
/* This points to the parent local_info_t struct (may be null) */
|
||||||
|
kfree(link->priv);
|
||||||
|
}
|
||||||
|
|
||||||
static const struct pcmcia_device_id labpc_cs_ids[] = {
|
static const struct pcmcia_device_id labpc_cs_ids[] = {
|
||||||
/* N.B. These IDs should match those in labpc_cs_boards (ni_labpc.c) */
|
/* N.B. These IDs should match those in labpc_cs_boards (ni_labpc.c) */
|
||||||
PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0103), /* daqcard-1200 */
|
PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0103), /* daqcard-1200 */
|
||||||
|
|
Loading…
Reference in New Issue