summaryrefslogtreecommitdiff
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorSean Wang <sean.wang@mediatek.com>2022-01-12 15:39:15 +0800
committerMarcel Holtmann <marcel@holtmann.org>2022-01-21 23:49:27 +0100
commit095519de2debef7666d519208ac2e7bc96cfa6bf (patch)
tree6e8c0667e7431db1a1c9179e0d57d01eb64541ee /drivers/bluetooth
parent01ecc177b7d7ba055b79645e60e89385736ef2fc (diff)
Bluetooth: btmtksdio: lower log level in btmtksdio_runtime_[resume|suspend]()
Lower its log level from INFO to DEBUG prior to we enable runtime pm for mt7921s with the smaller idle time as default. Signed-off-by: Sean Wang <sean.wang@mediatek.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/btmtksdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/btmtksdio.c b/drivers/bluetooth/btmtksdio.c
index b0aae4143037..3e8f19556e2c 100644
--- a/drivers/bluetooth/btmtksdio.c
+++ b/drivers/bluetooth/btmtksdio.c
@@ -1253,7 +1253,7 @@ static int btmtksdio_runtime_suspend(struct device *dev)
err = btmtksdio_fw_pmctrl(bdev);
- bt_dev_info(bdev->hdev, "status (%d) return ownership to device", err);
+ bt_dev_dbg(bdev->hdev, "status (%d) return ownership to device", err);
return err;
}
@@ -1273,7 +1273,7 @@ static int btmtksdio_runtime_resume(struct device *dev)
err = btmtksdio_drv_pmctrl(bdev);
- bt_dev_info(bdev->hdev, "status (%d) get ownership from device", err);
+ bt_dev_dbg(bdev->hdev, "status (%d) get ownership from device", err);
return err;
}