Re: [PATCH] firewire: Use bitwise instead of arithmetic operator for flags

2021-03-14 Thread Stefan Richter
On Mar 09 Jiapeng Chong wrote: > Fix the following coccicheck warnings: > > ./drivers/firewire/core-device.c:973:22-23: WARNING: sum of probable > bitmasks, consider |. > > ./drivers/firewire/core-device.c:954:22-23: WARNING: sum of probable > bitmasks, consider |. > > Reported-by: Abaci Robot

[PATCH] firewire: Use bitwise instead of arithmetic operator for flags

2021-03-08 Thread Jiapeng Chong
Fix the following coccicheck warnings: ./drivers/firewire/core-device.c:973:22-23: WARNING: sum of probable bitmasks, consider |. ./drivers/firewire/core-device.c:954:22-23: WARNING: sum of probable bitmasks, consider |. Reported-by: Abaci Robot Signed-off-by: Jiapeng Chong ---