Re: [ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2015-01-15 Thread Kalle Valo
Arend van Spriel writes: > Use the helper to get rid of the file operations per debugfs file. The > device driver data contains struct ieee80211_hw pointer and the > struct ath9k_softc pointer is assigned to ieee80211_hw::priv so it can > be accessed in the seq_file read operation. > > Cc: ath9k-

Re: [ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2015-01-09 Thread Arend van Spriel
On 01/09/15 01:34, Sujith Manoharan wrote: > Arend van Spriel wrote: >> So the content of the modified debugfs files looks sane? > > Yep, as sane as the code populating the debug data. :-) :-D Thanks, Arend > Sujith ___ ath9k-devel mailing list ath9k-

Re: [ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2015-01-08 Thread Sujith Manoharan
Arend van Spriel wrote: > So the content of the modified debugfs files looks sane? Yep, as sane as the code populating the debug data. :-) Sujith ___ ath9k-devel mailing list ath9k-devel@lists.ath9k.org https://lists.ath9k.org/mailman/listinfo/ath9k-dev

Re: [ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2015-01-08 Thread Arend van Spriel
On 01/08/15 04:19, Sujith Manoharan wrote: >> Arend van Spriel writes: >> >>> Use the helper to get rid of the file operations per debugfs file. The >>> device driver data contains struct ieee80211_hw pointer and the >>> struct ath9k_softc pointer is assigned to ieee80211_hw::priv so it can >>> be

Re: [ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2015-01-07 Thread Sujith Manoharan
> Arend van Spriel writes: > > > Use the helper to get rid of the file operations per debugfs file. The > > device driver data contains struct ieee80211_hw pointer and the > > struct ath9k_softc pointer is assigned to ieee80211_hw::priv so it can > > be accessed in the seq_file read operation. >

Re: [ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2015-01-07 Thread Kalle Valo
Arend van Spriel writes: > Use the helper to get rid of the file operations per debugfs file. The > device driver data contains struct ieee80211_hw pointer and the > struct ath9k_softc pointer is assigned to ieee80211_hw::priv so it can > be accessed in the seq_file read operation. > > Cc: ath9k-

[ath9k-devel] [PATCH] ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries

2014-12-27 Thread Arend van Spriel
Use the helper to get rid of the file operations per debugfs file. The device driver data contains struct ieee80211_hw pointer and the struct ath9k_softc pointer is assigned to ieee80211_hw::priv so it can be accessed in the seq_file read operation. Cc: ath9k-devel@lists.ath9k.org Signed-off-by: A