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

staging: comedi: das08_cs: remove the pcmcia suspend/resume

The pcmcia suspend/resume callbacks don't do anything. 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 44378f65
...@@ -184,16 +184,6 @@ static void das08_pcmcia_detach(struct pcmcia_device *link) ...@@ -184,16 +184,6 @@ static void das08_pcmcia_detach(struct pcmcia_device *link)
} }
static int das08_pcmcia_suspend(struct pcmcia_device *link)
{
return 0;
}
static int das08_pcmcia_resume(struct pcmcia_device *link)
{
return 0;
}
static const struct pcmcia_device_id das08_cs_id_table[] = { static const struct pcmcia_device_id das08_cs_id_table[] = {
PCMCIA_DEVICE_MANF_CARD(0x01c5, 0x4001), PCMCIA_DEVICE_MANF_CARD(0x01c5, 0x4001),
PCMCIA_DEVICE_NULL PCMCIA_DEVICE_NULL
...@@ -205,8 +195,6 @@ static struct pcmcia_driver das08_cs_driver = { ...@@ -205,8 +195,6 @@ static struct pcmcia_driver das08_cs_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.probe = das08_pcmcia_attach, .probe = das08_pcmcia_attach,
.remove = das08_pcmcia_detach, .remove = das08_pcmcia_detach,
.suspend = das08_pcmcia_suspend,
.resume = das08_pcmcia_resume,
.id_table = das08_cs_id_table, .id_table = das08_cs_id_table,
}; };
......
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