]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: dt2801: remove disabled code in dt2801_writedata
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 26 Nov 2013 23:41:48 +0000 (16:41 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2013 17:20:20 +0000 (09:20 -0800)
The code that checks the DT_S_READY status is disabled. Just remove it.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/dt2801.c

index 1dd8190970e31f531e4c52d3f2bcee90d9fd15f7..a1b022cfe7121d2b1faa121a69d872ca8d4f0bf1 100644 (file)
@@ -289,13 +289,6 @@ static int dt2801_writedata(struct comedi_device *dev, unsigned int data)
                        outb_p(data & 0xff, dev->iobase + DT2801_DATA);
                        return 0;
                }
-#if 0
-               if (stat & DT_S_READY) {
-                       printk
-                           ("dt2801: ready flag set (bad!) in dt2801_writedata()\n");
-                       return -EIO;
-               }
-#endif
        } while (--timeout > 0);
 
        return -ETIME;