Skip to content

Commit

Permalink
drivers/staging/wilc1000: Removing explicit function tracing using de…
Browse files Browse the repository at this point in the history
…v_dbg/info

ftrace can be used to trace functions. Removing function tracing using dev_dbg/info

Signed-off-by: Pushkar Jambhlekar <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
PushkarJambhlekar authored and gregkh committed Mar 29, 2017
1 parent 049b611 commit 2296149
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/staging/wilc1000/wilc_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,15 +243,11 @@ static void wilc_sdio_disable_interrupt(struct wilc *dev)
struct sdio_func *func = container_of(dev->dev, struct sdio_func, dev);
int ret;

dev_dbg(&func->dev, "wilc_sdio_disable_interrupt IN\n");

sdio_claim_host(func);
ret = sdio_release_irq(func);
if (ret < 0)
dev_err(&func->dev, "can't release sdio_irq, err(%d)\n", ret);
sdio_release_host(func);

dev_info(&func->dev, "wilc_sdio_disable_interrupt OUT\n");
}

/********************************************
Expand Down

0 comments on commit 2296149

Please sign in to comment.