2020-12-14 15:02:38

by Zheng Yongjun

[permalink] [raw]
Subject: [PATCH -next] s390/crypto/zcrypt_cex4: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <[email protected]>
---
drivers/s390/crypto/zcrypt_cex4.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/s390/crypto/zcrypt_cex4.c b/drivers/s390/crypto/zcrypt_cex4.c
index f5195bca1d85..f4a6d3744241 100644
--- a/drivers/s390/crypto/zcrypt_cex4.c
+++ b/drivers/s390/crypto/zcrypt_cex4.c
@@ -631,7 +631,7 @@ static int zcrypt_cex4_queue_probe(struct ap_device *ap_dev)
atomic_set(&zq->load, 0);
ap_queue_init_state(aq);
ap_queue_init_reply(aq, &zq->reply);
- aq->request_timeout = CEX4_CLEANUP_TIME,
+ aq->request_timeout = CEX4_CLEANUP_TIME;
aq->private = zq;
rc = zcrypt_queue_register(zq);
if (rc) {
--
2.22.0


2020-12-14 19:22:23

by Harald Freudenberger

[permalink] [raw]
Subject: Re: [PATCH -next] s390/crypto/zcrypt_cex4: convert comma to semicolon

applied to the s390 subsystem. This will go upstream with the next kernel merge window.
Thanks

On 14.12.20 14:43, Zheng Yongjun wrote:
> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Zheng Yongjun <[email protected]>
> ---
> drivers/s390/crypto/zcrypt_cex4.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/s390/crypto/zcrypt_cex4.c b/drivers/s390/crypto/zcrypt_cex4.c
> index f5195bca1d85..f4a6d3744241 100644
> --- a/drivers/s390/crypto/zcrypt_cex4.c
> +++ b/drivers/s390/crypto/zcrypt_cex4.c
> @@ -631,7 +631,7 @@ static int zcrypt_cex4_queue_probe(struct ap_device *ap_dev)
> atomic_set(&zq->load, 0);
> ap_queue_init_state(aq);
> ap_queue_init_reply(aq, &zq->reply);
> - aq->request_timeout = CEX4_CLEANUP_TIME,
> + aq->request_timeout = CEX4_CLEANUP_TIME;
> aq->private = zq;
> rc = zcrypt_queue_register(zq);
> if (rc) {