From: Chen Zhou Date: Mon, 16 Dec 2019 10:58:48 +0000 (+0800) Subject: crypto: api - remove unneeded semicolon X-Git-Tag: v5.10.7~3034^2~126 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c782937e92826af464e65111e9f7a7a774b6c276;p=platform%2Fkernel%2Flinux-rpi.git crypto: api - remove unneeded semicolon Fixes coccicheck warning: ./include/linux/crypto.h:573:2-3: Unneeded semicolon Signed-off-by: Chen Zhou Signed-off-by: Herbert Xu --- diff --git a/include/linux/crypto.h b/include/linux/crypto.h index a905e52..8729f95 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; }