* [PATCH] ieee802154: remove unecessary condition check before debugfs_remove_recursive
@ 2018-09-08 13:44 zhong jiang
0 siblings, 0 replies; only message in thread
From: zhong jiang @ 2018-09-08 13:44 UTC (permalink / raw)
To: davem, alex.aring, michael.hennerich, stefan
Cc: linux-wpan, netdev, linux-kernel
debugfs_remove_recursive has taken IS_ERR_OR_NULL into account. So just
remove the condition check before debugfs_remove_recursive.
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
---
drivers/net/ieee802154/adf7242.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/ieee802154/adf7242.c b/drivers/net/ieee802154/adf7242.c
index 23a52b9..cd1d8fa 100644
--- a/drivers/net/ieee802154/adf7242.c
+++ b/drivers/net/ieee802154/adf7242.c
@@ -1308,8 +1308,7 @@ static int adf7242_remove(struct spi_device *spi)
{
struct adf7242_local *lp = spi_get_drvdata(spi);
- if (!IS_ERR_OR_NULL(lp->debugfs_root))
- debugfs_remove_recursive(lp->debugfs_root);
+ debugfs_remove_recursive(lp->debugfs_root);
cancel_delayed_work_sync(&lp->work);
destroy_workqueue(lp->wqueue);
--
1.7.12.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-09-08 13:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-08 13:44 [PATCH] ieee802154: remove unecessary condition check before debugfs_remove_recursive zhong jiang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox