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

staging: comedi: ni_daq_700: 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>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d2d2a6f2
...@@ -226,16 +226,6 @@ static void dio700_cs_detach(struct pcmcia_device *link) ...@@ -226,16 +226,6 @@ static void dio700_cs_detach(struct pcmcia_device *link)
dio700_release(link); dio700_release(link);
} }
static int dio700_cs_suspend(struct pcmcia_device *link)
{
return 0;
}
static int dio700_cs_resume(struct pcmcia_device *link)
{
return 0;
}
static const struct pcmcia_device_id dio700_cs_ids[] = { static const struct pcmcia_device_id dio700_cs_ids[] = {
PCMCIA_DEVICE_MANF_CARD(0x010b, 0x4743), PCMCIA_DEVICE_MANF_CARD(0x010b, 0x4743),
PCMCIA_DEVICE_NULL PCMCIA_DEVICE_NULL
...@@ -247,8 +237,6 @@ static struct pcmcia_driver dio700_cs_driver = { ...@@ -247,8 +237,6 @@ static struct pcmcia_driver dio700_cs_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.probe = dio700_cs_attach, .probe = dio700_cs_attach,
.remove = dio700_cs_detach, .remove = dio700_cs_detach,
.suspend = dio700_cs_suspend,
.resume = dio700_cs_resume,
.id_table = dio700_cs_ids, .id_table = dio700_cs_ids,
}; };
......
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