Commit c782937e authored by Chen Zhou's avatar Chen Zhou Committed by Herbert Xu
Browse files

crypto: api - remove unneeded semicolon



Fixes coccicheck warning:

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

Signed-off-by: default avatarChen Zhou <chenzhou10@huawei.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent eb5b9154
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}