projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb5b915
)
crypto: api - remove unneeded semicolon
author
Chen Zhou
<chenzhou10@huawei.com>
Mon, 16 Dec 2019 10:58:48 +0000
(18:58 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Fri, 27 Dec 2019 10:18:02 +0000
(18:18 +0800)
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>
include/linux/crypto.h
patch
|
blob
|
history
diff --git
a/include/linux/crypto.h
b/include/linux/crypto.h
index
a905e52
..
8729f95
100644
(file)
--- 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;
}