diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2023-09-11 21:40:13 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2023-09-19 13:26:57 +0200 |
commit | 99441a38c391b1115e405d1f47ede237fca37f1b (patch) | |
tree | e670a800462f762c2b8525aac891811634918cce /net/iucv/iucv.c | |
parent | 9c66cc5609b13899ef7d143f51c59bdcfd63484d (diff) | |
download | lwn-99441a38c391b1115e405d1f47ede237fca37f1b.tar.gz lwn-99441a38c391b1115e405d1f47ede237fca37f1b.zip |
s390: use control register bit defines
Use control register bit defines instead of plain numbers where
possible.
Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'net/iucv/iucv.c')
-rw-r--r-- | net/iucv/iucv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c index b5cee8dad926..0ed6e34d6edd 100644 --- a/net/iucv/iucv.c +++ b/net/iucv/iucv.c @@ -1823,7 +1823,7 @@ static int __init iucv_init(void) rc = -EPROTONOSUPPORT; goto out; } - system_ctl_set_bit(0, 1); + system_ctl_set_bit(0, CR0_IUCV_BIT); rc = iucv_query_maxconn(); if (rc) goto out_ctl; |