Skip to content

Commit

Permalink
staging: comedi: ni_daq_700: remove the pcmcia suspend/resume
Browse files Browse the repository at this point in the history
The pcmcia suspend/resume callbacks don't do anything. Remove
them.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jun 23, 2012
1 parent d2d2a6f commit cc04ac0
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions drivers/staging/comedi/drivers/ni_daq_700.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,16 +226,6 @@ static void dio700_cs_detach(struct pcmcia_device *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[] = {
PCMCIA_DEVICE_MANF_CARD(0x010b, 0x4743),
PCMCIA_DEVICE_NULL
Expand All @@ -247,8 +237,6 @@ static struct pcmcia_driver dio700_cs_driver = {
.owner = THIS_MODULE,
.probe = dio700_cs_attach,
.remove = dio700_cs_detach,
.suspend = dio700_cs_suspend,
.resume = dio700_cs_resume,
.id_table = dio700_cs_ids,
};

Expand Down

0 comments on commit cc04ac0

Please sign in to comment.