Commit 9f7d65fb authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo

rtw88: remove redundant assignment to pointer debugfs_topdir

Pointer debugfs_topdir is initialized to a value that is never read
and it is re-assigned later. The initialization is redundant and can
be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent d74d0767
...@@ -672,7 +672,7 @@ static struct rtw_debugfs_priv rtw_debug_priv_rsvd_page = { ...@@ -672,7 +672,7 @@ static struct rtw_debugfs_priv rtw_debug_priv_rsvd_page = {
void rtw_debugfs_init(struct rtw_dev *rtwdev) void rtw_debugfs_init(struct rtw_dev *rtwdev)
{ {
struct dentry *debugfs_topdir = rtwdev->debugfs; struct dentry *debugfs_topdir;
debugfs_topdir = debugfs_create_dir("rtw88", debugfs_topdir = debugfs_create_dir("rtw88",
rtwdev->hw->wiphy->debugfsdir); rtwdev->hw->wiphy->debugfsdir);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment