lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <f90d9a2ce4727586c1c1a2a0cb581fc214babc42.1576086080.git.schaferjscott@gmail.com> Date: Wed, 11 Dec 2019 12:12:47 -0600 From: Scott Schafer <schaferjscott@...il.com> To: gregkh@...uxfoundation.org Cc: Scott Schafer <schaferjscott@...il.com>, Manish Chopra <manishc@...vell.com>, GR-Linux-NIC-Dev@...vell.com, netdev@...r.kernel.org, devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org Subject: [PATCH v2 18/23] staging: qlge: Fix CHECK: Prefer using the BIT macro Fix CHECK: Prefer using the BIT macro changed (1<<4) to BIT(4) in 2 places in qlge.h Signed-off-by: Scott Schafer <schaferjscott@...il.com> --- drivers/staging/qlge/qlge.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/qlge/qlge.h b/drivers/staging/qlge/qlge.h index 010d39b4b30d..de9e836c2788 100644 --- a/drivers/staging/qlge/qlge.h +++ b/drivers/staging/qlge/qlge.h @@ -1274,7 +1274,7 @@ struct net_req_iocb { */ struct wqicb { __le16 len; -#define Q_LEN_V (1 << 4) +#define Q_LEN_V BIT(4) #define Q_LEN_CPP_CONT 0x0000 #define Q_LEN_CPP_16 0x0001 #define Q_LEN_CPP_32 0x0002 @@ -1309,7 +1309,7 @@ struct cqicb { #define FLAGS_LI 0x40 #define FLAGS_LC 0x80 __le16 len; -#define LEN_V (1 << 4) +#define LEN_V BIT(4) #define LEN_CPP_CONT 0x0000 #define LEN_CPP_32 0x0001 #define LEN_CPP_64 0x0002 -- 2.20.1
Powered by blists - more mailing lists