Commit 63e563af authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_mio_cs: remove pcmcia_driver suspend/resume

The pcmcia_driver suspend and resume functions in this driver
don't do anything. Since they are optional just remove them.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b8f4c930
......@@ -272,20 +272,6 @@ static void cs_detach(struct pcmcia_device *link)
cs_release(link);
}
static int mio_cs_suspend(struct pcmcia_device *link)
{
DPRINTK("pm suspend\n");
return 0;
}
static int mio_cs_resume(struct pcmcia_device *link)
{
DPRINTK("pm resume\n");
return 0;
}
static int mio_pcmcia_config_loop(struct pcmcia_device *p_dev, void *priv_data)
{
int base, ret;
......@@ -423,8 +409,6 @@ static struct pcmcia_driver ni_mio_cs_driver = {
.id_table = ni_mio_cs_ids,
.probe = cs_attach,
.remove = cs_detach,
.suspend = mio_cs_suspend,
.resume = mio_cs_resume,
};
module_comedi_pcmcia_driver(driver_ni_mio_cs, ni_mio_cs_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment