mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 15:29:16 +00:00
wifi: mt76: mt7915: workaround dubious x | !y warning
Sparse warns: drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c:526:9: warning: dubious: x | !y Workaround it by using the '?' operator. Compile tested only. Signed-off-by: Kalle Valo <kvalo@kernel.org> Acked-by: Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://msgid.link/20240325155838.1558680-1-kvalo@kernel.org
This commit is contained in:
parent
5c4250092f
commit
b68b2beadf
@ -523,7 +523,8 @@ mt7915_fw_debug_wm_set(void *data, u64 val)
|
||||
|
||||
/* WM CPU info record control */
|
||||
mt76_clear(dev, MT_CPU_UTIL_CTRL, BIT(0));
|
||||
mt76_wr(dev, MT_DIC_CMD_REG_CMD, BIT(2) | BIT(13) | !dev->fw.debug_wm);
|
||||
mt76_wr(dev, MT_DIC_CMD_REG_CMD, BIT(2) | BIT(13) |
|
||||
(dev->fw.debug_wm ? 0 : BIT(0)));
|
||||
mt76_wr(dev, MT_MCU_WM_CIRQ_IRQ_MASK_CLR_ADDR, BIT(5));
|
||||
mt76_wr(dev, MT_MCU_WM_CIRQ_IRQ_SOFT_ADDR, BIT(5));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user