Else is not generally useful after a break or return
Signed-off-by: Prasanna Karthik <redacted>
---
drivers/bluetooth/btmrvl_sdio.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdi=
o.c
index 08e01f0..9a5e2e8 100644
--- a/drivers/bluetooth/btmrvl_sdio.c
+++ b/drivers/bluetooth/btmrvl_sdio.c
@@ -1637,10 +1637,10 @@ static int btmrvl_sdio_suspend(struct device *dev)
if (priv->adapter->hs_state =3D=3D HS_ACTIVATED) {
BT_DBG("suspend with MMC_PM_KEEP_POWER");
return sdio_set_host_pm_flags(func, MMC_PM_KEEP_POWER);
- } else {
- BT_DBG("suspend without MMC_PM_KEEP_POWER");
- return 0;
}
+
+ BT_DBG("suspend without MMC_PM_KEEP_POWER");
+ return 0;
}=20
static int btmrvl_sdio_resume(struct device *dev)
--=20
1.9.1