staging: comedi: cb_das16_cs: remove unneeded default case in analog in read
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 26 Jun 2012 17:08:52 +0000 (10:08 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 26 Jun 2012 22:36:10 +0000 (15:36 -0700)
The default (return -EINVAL) case is not needed when working
out the correct value to set the analog input range. As pointed
out by Ian Abbott, the comedi core checks the range in
comedi_check_chanlist() before calling the insn_read() function.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reported-by: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/cb_das16_cs.c

index 95fa7e2..58d4529 100644 (file)
@@ -136,8 +136,6 @@ static int das16cs_ai_rinsn(struct comedi_device *dev,
        case 3:
                devpriv->status2 |= 0x200;
                break;
-       default:
-               return -EINVAL;
        }
        outw(devpriv->status2, dev->iobase + DAS16CS_MISC2);