mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-26 12:47:53 +00:00
staging: media: davinci_vpfe: Remove unnecessary else after return
This patch fixes the checkpatch warning that else is not generally useful after a break or return. This was done using Coccinelle: @@ expression e2; statement s1; @@ if(e2) { ... return ...; } -else s1 Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fec6925030
commit
22d2666b7c
@ -94,7 +94,7 @@ static int get_oneshot_mode(enum ipipeif_input_entity input)
|
||||
{
|
||||
if (input == IPIPEIF_INPUT_MEMORY)
|
||||
return IPIPEIF_MODE_ONE_SHOT;
|
||||
else if (input == IPIPEIF_INPUT_ISIF)
|
||||
if (input == IPIPEIF_INPUT_ISIF)
|
||||
return IPIPEIF_MODE_CONTINUOUS;
|
||||
|
||||
return -EINVAL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user