OSDN Git Service

crypto: api - remove unneeded semicolon
authorChen Zhou <chenzhou10@huawei.com>
Mon, 16 Dec 2019 10:58:48 +0000 (18:58 +0800)
committerHerbert 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

index a905e52..8729f95 100644 (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;
 }