Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -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);