wilc1000: write value to WILC_INTR2_ENABLE register
Write the value instead of reading it twice.
Fixes: c5c77ba18e
("staging: wilc1000: Add SDIO/SPI 802.11 driver")
Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210224163706.519658-1-marcus.folkesson@gmail.com
This commit is contained in:
parent
f135a1571a
commit
e21b6e5a54
|
@ -947,7 +947,7 @@ static int wilc_sdio_sync_ext(struct wilc *wilc, int nint)
|
|||
for (i = 0; (i < 3) && (nint > 0); i++, nint--)
|
||||
reg |= BIT(i);
|
||||
|
||||
ret = wilc_sdio_read_reg(wilc, WILC_INTR2_ENABLE, ®);
|
||||
ret = wilc_sdio_write_reg(wilc, WILC_INTR2_ENABLE, reg);
|
||||
if (ret) {
|
||||
dev_err(&func->dev,
|
||||
"Failed write reg (%08x)...\n",
|
||||
|
|
Loading…
Reference in New Issue