mirror of
https://github.com/torvalds/linux.git
synced 2026-09-18 16:48:03 +02:00
The condition 'irq_flag | wake_irq_flag' uses bitwise OR to combine two
integer flags that are used as booleans. Replace with logical OR '||' to
correctly express the intended boolean check.
Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org>
Fixes:
|
||
|---|---|---|
| .. | ||
| acp63.h | ||
| Makefile | ||
| pci-ps.c | ||
| ps-common.c | ||
| ps-mach.c | ||
| ps-pdm-dma.c | ||
| ps-sdw-dma.c | ||