staging: comedi: addi_apci_1516: don't reset the apci1016 board
The apci1016 board only has digital inputs. There is no reason to reset the digital outputs and watchdog timer on that board. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3b9323b43d
commit
722bf0f09f
|
@ -63,8 +63,12 @@ static irqreturn_t v_ADDI_Interrupt(int irq, void *d)
|
||||||
|
|
||||||
static int apci1516_reset(struct comedi_device *dev)
|
static int apci1516_reset(struct comedi_device *dev)
|
||||||
{
|
{
|
||||||
|
const struct addi_board *this_board = comedi_board(dev);
|
||||||
struct addi_private *devpriv = dev->private;
|
struct addi_private *devpriv = dev->private;
|
||||||
|
|
||||||
|
if (!this_board->i_Timer)
|
||||||
|
return 0;
|
||||||
|
|
||||||
outw(0x0, devpriv->iobase + APCI1516_DO_REG);
|
outw(0x0, devpriv->iobase + APCI1516_DO_REG);
|
||||||
outw(0x0, devpriv->i_IobaseAddon + APCI1516_WDOG_CTRL_REG);
|
outw(0x0, devpriv->i_IobaseAddon + APCI1516_WDOG_CTRL_REG);
|
||||||
outw(0x0, devpriv->i_IobaseAddon + APCI1516_WDOG_RELOAD_LSB_REG);
|
outw(0x0, devpriv->i_IobaseAddon + APCI1516_WDOG_RELOAD_LSB_REG);
|
||||||
|
|
Loading…
Reference in New Issue