From: H Hartley Sweeten Date: Mon, 4 Feb 2013 21:21:09 +0000 (-0700) Subject: staging: comedi: cb_das16_cs: use comedi_pcmcia_disable() for (*detach) X-Git-Tag: next-20130218~26^2~133 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7fadd565f0f84ec4402ad33546d7eec7a98220ea;p=karo-tx-linux.git staging: comedi: cb_das16_cs: use comedi_pcmcia_disable() for (*detach) The (*detach) function, das16cs_detach() is a simple wrapper around comedi_pcmcia_disable(). Just use comedi_pcmcia_disable() directly for the (*detach). Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/cb_das16_cs.c b/drivers/staging/comedi/drivers/cb_das16_cs.c index e1318faa9ebf..5bbffd9f8af9 100644 --- a/drivers/staging/comedi/drivers/cb_das16_cs.c +++ b/drivers/staging/comedi/drivers/cb_das16_cs.c @@ -477,16 +477,11 @@ static int das16cs_auto_attach(struct comedi_device *dev, return 0; } -static void das16cs_detach(struct comedi_device *dev) -{ - comedi_pcmcia_disable(dev); -} - static struct comedi_driver driver_das16cs = { .driver_name = "cb_das16_cs", .module = THIS_MODULE, .auto_attach = das16cs_auto_attach, - .detach = das16cs_detach, + .detach = comedi_pcmcia_disable, }; static int das16cs_pcmcia_attach(struct pcmcia_device *link)