staging: comedi: pcmuio: return 0 for successful attach

Returning 0 for success is more common.

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>
This commit is contained in:
H Hartley Sweeten 2013-06-18 13:26:59 -07:00 коммит произвёл Greg Kroah-Hartman
Родитель b315773177
Коммит ee81b210fe
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -672,7 +672,7 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it)
devpriv->asics[asic].irq = irq[asic];
}
return 1;
return 0;
}
static void pcmuio_detach(struct comedi_device *dev)