mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
gpib: Fix error code in ibonline()
This accidentally returns 1 on error, but it should return negative
error codes.
Fixes: 9dde4559e9 ("staging: gpib: Add GPIB common core driver")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://patch.msgid.link/aSlMnaT1M104NJb2@stanley.mountain
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
327e987e51
commit
96118565d2
|
|
@ -227,11 +227,10 @@ int ibonline(struct gpib_board *board)
|
|||
#ifndef CONFIG_NIOS2
|
||||
board->autospoll_task = kthread_run(&autospoll_thread, board,
|
||||
"gpib%d_autospoll_kthread", board->minor);
|
||||
retval = IS_ERR(board->autospoll_task);
|
||||
if (retval) {
|
||||
if (IS_ERR(board->autospoll_task)) {
|
||||
dev_err(board->gpib_dev, "failed to create autospoll thread\n");
|
||||
board->interface->detach(board);
|
||||
return retval;
|
||||
return PTR_ERR(board->autospoll_task);
|
||||
}
|
||||
#endif
|
||||
board->online = 1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user