mirror of https://gitee.com/openkylin/linux.git
staging: ccree: else is not generally useful after a break or return
Fixes checkpatch warnings: WARNING: else is not generally useful after a break or return Signed-off-by: Suniel Mahesh <sunil.m@techveda.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
553aff5f1b
commit
abd4b78793
|
@ -386,10 +386,9 @@ int send_request(
|
|||
*/
|
||||
wait_for_completion(&ssi_req->seq_compl);
|
||||
return 0;
|
||||
} else {
|
||||
/* Operation still in process */
|
||||
return -EINPROGRESS;
|
||||
}
|
||||
/* Operation still in process */
|
||||
return -EINPROGRESS;
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
Loading…
Reference in New Issue