crypto: api - remove unneeded semicolon

Fixes coccicheck warning:

./include/linux/crypto.h:573:2-3: Unneeded semicolon

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Chen Zhou 2019-12-16 18:58:48 +08:00 committed by Herbert Xu
parent eb5b9154bf
commit c782937e92
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ static inline int crypto_wait_req(int err, struct crypto_wait *wait)
reinit_completion(&wait->completion);
err = wait->err;
break;
};
}
return err;
}