linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] bluetooth: btmrvl_sdio: improve printk messages
@ 2019-01-11 20:56 Stefan Agner
  2019-01-11 20:56 ` [PATCH 2/2] bluetooth: btmrvl_sdio: lower log level of informational message Stefan Agner
  2019-01-18  9:14 ` [PATCH 1/2] bluetooth: btmrvl_sdio: improve printk messages Marcel Holtmann
  0 siblings, 2 replies; 4+ messages in thread
From: Stefan Agner @ 2019-01-11 20:56 UTC (permalink / raw)
  To: marcel, johan.hedberg; +Cc: huxm, linux-bluetooth, linux-kernel, Stefan Agner

Use dev_* variants to print messages in drivers.

Signed-off-by: Stefan Agner <stefan@agner.ch>
---
 drivers/bluetooth/btmrvl_sdio.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdio.c
index fb3d03928460..6f9a1735039d 100644
--- a/drivers/bluetooth/btmrvl_sdio.c
+++ b/drivers/bluetooth/btmrvl_sdio.c
@@ -62,13 +62,14 @@ static const struct of_device_id btmrvl_sdio_of_match_table[] = {
 static irqreturn_t btmrvl_wake_irq_bt(int irq, void *priv)
 {
 	struct btmrvl_sdio_card *card = priv;
+	struct device *dev = &card->func->dev;
 	struct btmrvl_plt_wake_cfg *cfg = card->plt_wake_cfg;
 
-	pr_info("%s: wake by bt\n", __func__);
+	dev_info(dev, "wake by bt\n");
 	cfg->wake_by_bt = true;
 	disable_irq_nosync(irq);
 
-	pm_wakeup_event(&card->func->dev, 0);
+	pm_wakeup_event(dev, 0);
 	pm_system_wakeup();
 
 	return IRQ_HANDLED;
@@ -87,7 +88,7 @@ static int btmrvl_sdio_probe_of(struct device *dev,
 
 	if (!dev->of_node ||
 	    !of_match_node(btmrvl_sdio_of_match_table, dev->of_node)) {
-		pr_err("sdio platform data not available\n");
+		dev_err(dev, "sdio platform data not available\n");
 		return -1;
 	}
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-01-18  9:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-11 20:56 [PATCH 1/2] bluetooth: btmrvl_sdio: improve printk messages Stefan Agner
2019-01-11 20:56 ` [PATCH 2/2] bluetooth: btmrvl_sdio: lower log level of informational message Stefan Agner
2019-01-18  9:15   ` Marcel Holtmann
2019-01-18  9:14 ` [PATCH 1/2] bluetooth: btmrvl_sdio: improve printk messages Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).