Skip to content

Commit

Permalink
staging: comedi: ni_daq_dio24: remove pcmcia_driver suspend/resume
Browse files Browse the repository at this point in the history
The pcmcia_driver suspend and resume functions in this driver
don't do anything. Since they are optional just remove them.

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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Feb 4, 2013
1 parent 0bfc02b commit 7044ae8
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions drivers/staging/comedi/drivers/ni_daq_dio24.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,18 +261,6 @@ static void dio24_config(struct pcmcia_device *link)
pcmcia_disable_device(link);
}

static int dio24_cs_suspend(struct pcmcia_device *link)
{
return 0;
} /* dio24_cs_suspend */

static int dio24_cs_resume(struct pcmcia_device *link)
{
return 0;
} /* dio24_cs_resume */

/*====================================================================*/

static const struct pcmcia_device_id dio24_cs_ids[] = {
/* N.B. These IDs should match those in dio24_boards */
PCMCIA_DEVICE_MANF_CARD(0x010b, 0x475c), /* daqcard-dio24 */
Expand All @@ -286,8 +274,6 @@ static struct pcmcia_driver dio24_cs_driver = {
.id_table = dio24_cs_ids,
.probe = dio24_cs_attach,
.remove = dio24_cs_detach,
.suspend = dio24_cs_suspend,
.resume = dio24_cs_resume,
};
module_comedi_pcmcia_driver(driver_dio24, dio24_cs_driver);

Expand Down

0 comments on commit 7044ae8

Please sign in to comment.