mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-01 10:13:58 +08:00
73fcf4e20e
The original code is equivalent to:
u32 cdw10 = (1 | key) ? 1 << 3 : 0;
But we want:
u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Fixes:
|
||
---|---|---|
.. | ||
Kconfig | ||
Makefile | ||
nvme.h | ||
pci.c | ||
scsi.c |