Skip to content

Commit

Permalink
Bluetooth: btmrvl: improve printk messages
Browse files Browse the repository at this point in the history
Use dev_* variants to print messages in drivers.

Signed-off-by: Stefan Agner <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
  • Loading branch information
agners authored and holtmann committed Jan 22, 2019
1 parent 5e05353 commit 10004f8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/bluetooth/btmrvl_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}

Expand Down

0 comments on commit 10004f8

Please sign in to comment.