diff options
author | Ian Abbott <[email protected]> | 2014-07-25 18:07:08 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2014-07-30 16:47:44 -0700 |
commit | ffe29dc6668b9bf0e102fda8f6f52b239c5b83f4 (patch) | |
tree | 495f7838ba1e6533c2bc1557bfa3ef1d197b2e05 | |
parent | a386149fb2bad23b5c6123894049ce3392bf76b5 (diff) |
staging: comedi: amplc_dio200_common: remove some tests from amplc_dio200_common_detach()
`amplc_dio200_common_detach()` doesn't do much apart from freeing the
IRQ handler that was requested by `amplc_dio200_common_attach()` if
`dev->irq` is non-zero. There is no need to check if the pointer to
the constant board data or the pointer to private per-device data
exist, so remove those tests.
Signed-off-by: Ian Abbott <[email protected]>
Reviewed-by: H Hartley Sweeten <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/comedi/drivers/amplc_dio200_common.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/comedi/drivers/amplc_dio200_common.c b/drivers/staging/comedi/drivers/amplc_dio200_common.c index 3592e58c57d5..4cf9e9ed71d4 100644 --- a/drivers/staging/comedi/drivers/amplc_dio200_common.c +++ b/drivers/staging/comedi/drivers/amplc_dio200_common.c @@ -1197,11 +1197,6 @@ EXPORT_SYMBOL_GPL(amplc_dio200_common_attach); void amplc_dio200_common_detach(struct comedi_device *dev) { - const struct dio200_board *thisboard = comedi_board(dev); - struct dio200_private *devpriv = dev->private; - - if (!thisboard || !devpriv) - return; if (dev->irq) { free_irq(dev->irq, dev); dev->irq = 0; |