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:
Suniel Mahesh 2017-09-22 10:12:21 +05:30 committed by Greg Kroah-Hartman
parent 553aff5f1b
commit abd4b78793
1 changed files with 2 additions and 3 deletions

View File

@ -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;
}
/*!