mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-01 04:53:09 -04:00
staging: i4l: act2000: fix use of return
checkpatch warns that return is not a function and as such the brace after it is not required. Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e7d992d8b6
commit
2c78f701a4
@@ -439,5 +439,5 @@ act2000_isa_download(act2000_card *card, act2000_ddef __user *cb)
|
||||
}
|
||||
kfree(buf);
|
||||
msleep_interruptible(500);
|
||||
return (act2000_isa_getid(card));
|
||||
return act2000_isa_getid(card);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user