diff mbox series

[3/6] wifi: wilc1000: do not keep sdio bus claimed during suspend/resume

Message ID 20240613-wilc_suspend-v1-3-c2f766d0988c@bootlin.com (mailing list archive)
State Accepted
Commit 25d086ba196418a16b6328440226065aeefc6076
Delegated to: Kalle Valo
Headers show
Series wifi: wilc1000: update power management | expand

Commit Message

Alexis Lothoré June 13, 2024, 2:06 p.m. UTC
There is no reason to keep the MMC host claimed during suspend.

Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
---
 drivers/net/wireless/microchip/wilc1000/sdio.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/drivers/net/wireless/microchip/wilc1000/sdio.c b/drivers/net/wireless/microchip/wilc1000/sdio.c
index 4e478a2cd4cc..fb4de3de1140 100644
--- a/drivers/net/wireless/microchip/wilc1000/sdio.c
+++ b/drivers/net/wireless/microchip/wilc1000/sdio.c
@@ -269,7 +269,6 @@  static int wilc_sdio_suspend(struct device *dev)
 		dev_err(&func->dev, "Fail reset sdio\n");
 		return ret;
 	}
-	sdio_claim_host(func);
 
 	return 0;
 }
@@ -1000,7 +999,6 @@  static int wilc_sdio_resume(struct device *dev)
 	struct wilc *wilc = sdio_get_drvdata(func);
 
 	dev_info(dev, "sdio resume\n");
-	sdio_release_host(func);
 	wilc_sdio_init(wilc, true);
 
 	if (wilc->suspend_event)