Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1608185
| From | Pushkar Jambhlekar <pushkar.iit@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] drivers/staging/wilc1000: Removing explicit function tracing using dev_dbg/info |
| Date | 2017-03-24 08:40 +0100 |
| Message-ID | <torZg-6BK-23@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
ftrace can be used to trace functions. Removing function tracing using dev_dbg/info Signed-off-by: Pushkar Jambhlekar <pushkar.iit@gmail.com> --- drivers/staging/wilc1000/wilc_sdio.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_sdio.c b/drivers/staging/wilc1000/wilc_sdio.c index ce6c3b4..0189e3e 100644 --- a/drivers/staging/wilc1000/wilc_sdio.c +++ b/drivers/staging/wilc1000/wilc_sdio.c @@ -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"); } /******************************************** -- 2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] drivers/staging/wilc1000: Removing explicit function tracing using dev_dbg/info Pushkar Jambhlekar <pushkar.iit@gmail.com> - 2017-03-24 08:40 +0100
csiph-web