staging: comedi: ni_tio: remove BUG() in ni_tio_set_gate_src()

This BUG() can never happen. The previous ni_tio_has_gate2_registers()
check will have already caused the function to return -EINVAL.

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 2016-03-23 15:37:03 -07:00 committed by Greg Kroah-Hartman
parent 592ef9fb8d
commit fa74d136fd
1 changed files with 1 additions and 2 deletions

View File

@ -1020,8 +1020,7 @@ int ni_tio_set_gate_src(struct ni_gpct *counter,
case ni_gpct_variant_660x:
return ni_660x_set_gate2(counter, src);
default:
BUG();
break;
return -EINVAL;
}
break;
default: