2020-06-14 18:24:31

by Ryder Lee

[permalink] [raw]
Subject: [PATCH v3 1/4] mt76: mt7915: add missing CONFIG_MAC80211_DEBUGFS

Add CONFIG_MAC80211_DEBUGFS to fix a reported warning.

Fixes: ec9742a ("mt76: mt7915: add .sta_add_debugfs support")
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Ryder Lee <[email protected]>
---
drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c b/drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c
index 5278bee812f1..7e48f56b5b08 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c
@@ -384,6 +384,7 @@ int mt7915_init_debugfs(struct mt7915_dev *dev)
return 0;
}

+#ifdef CONFIG_MAC80211_DEBUGFS
/** per-station debugfs **/

/* usage: <tx mode> <ldpc> <stbc> <bw> <gi> <nss> <mcs> */
@@ -461,3 +462,4 @@ void mt7915_sta_add_debugfs(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
debugfs_create_file("fixed_rate", 0600, dir, sta, &fops_fixed_rate);
debugfs_create_file("stats", 0400, dir, sta, &fops_sta_stats);
}
+#endif
--
2.18.0


2020-06-15 15:54:51

by Kalle Valo

[permalink] [raw]
Subject: Re: [PATCH v3 1/4] mt76: mt7915: add missing CONFIG_MAC80211_DEBUGFS

Ryder Lee <[email protected]> writes:

> Add CONFIG_MAC80211_DEBUGFS to fix a reported warning.
>
> Fixes: ec9742a ("mt76: mt7915: add .sta_add_debugfs support")
> Reported-by: kernel test robot <[email protected]>
> Signed-off-by: Ryder Lee <[email protected]>

Same comments as in v2:

Fixes: ec9742a8f38e ("mt76: mt7915: add .sta_add_debugfs support")

Should this go to v5.8?

--
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

2020-06-15 17:15:56

by Ryder Lee

[permalink] [raw]
Subject: Re: [PATCH v3 1/4] mt76: mt7915: add missing CONFIG_MAC80211_DEBUGFS

On Mon, 2020-06-15 at 18:54 +0300, Kalle Valo wrote:
> Ryder Lee <[email protected]> writes:
>
> > Add CONFIG_MAC80211_DEBUGFS to fix a reported warning.
> >
> > Fixes: ec9742a ("mt76: mt7915: add .sta_add_debugfs support")
> > Reported-by: kernel test robot <[email protected]>
> > Signed-off-by: Ryder Lee <[email protected]>
>
> Same comments as in v2:
>
> Fixes: ec9742a8f38e ("mt76: mt7915: add .sta_add_debugfs support")
>
> Should this go to v5.8?
>

Yep:)

Ryder