diff options
author | Chen Zhou <chenzhou10@huawei.com> | 2019-12-16 18:58:48 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-12-27 18:18:02 +0800 |
commit | c782937e92826af464e65111e9f7a7a774b6c276 (patch) | |
tree | 843e672434130ba80faae5b9047369d4227e40a1 | |
parent | eb5b9154bfb3617254776b4ef80a31ac4530c19b (diff) | |
download | blackbird-op-linux-c782937e92826af464e65111e9f7a7a774b6c276.tar.gz blackbird-op-linux-c782937e92826af464e65111e9f7a7a774b6c276.zip |
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>
-rw-r--r-- | include/linux/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index a905e524e332..8729f957f83c 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -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; } |