ath10k: Fix write permission on few debugfs files
authorMohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>
Tue, 24 Nov 2015 16:56:37 +0000 (22:26 +0530)
committerKalle Valo <kvalo@qca.qualcomm.com>
Mon, 30 Nov 2015 14:54:47 +0000 (16:54 +0200)
Fix write permission for few of the debugfs entries
which support write file operations as well.

Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/debug.c

index 145c066b50870c84374430d7549a9239f78f6678..b502b7fb3ca2433ffd95ff24c95b637fedcd3fb3 100644 (file)
@@ -2185,8 +2185,8 @@ int ath10k_debug_register(struct ath10k *ar)
        debugfs_create_file("wmi_services", S_IRUSR, ar->debug.debugfs_phy, ar,
                            &fops_wmi_services);
 
-       debugfs_create_file("simulate_fw_crash", S_IRUSR, ar->debug.debugfs_phy,
-                           ar, &fops_simulate_fw_crash);
+       debugfs_create_file("simulate_fw_crash", S_IRUSR | S_IWUSR,
+                           ar->debug.debugfs_phy, ar, &fops_simulate_fw_crash);
 
        debugfs_create_file("fw_crash_dump", S_IRUSR, ar->debug.debugfs_phy,
                            ar, &fops_fw_crash_dump);
@@ -2203,15 +2203,15 @@ int ath10k_debug_register(struct ath10k *ar)
        debugfs_create_file("chip_id", S_IRUSR, ar->debug.debugfs_phy,
                            ar, &fops_chip_id);
 
-       debugfs_create_file("htt_stats_mask", S_IRUSR, ar->debug.debugfs_phy,
-                           ar, &fops_htt_stats_mask);
+       debugfs_create_file("htt_stats_mask", S_IRUSR | S_IWUSR,
+                           ar->debug.debugfs_phy, ar, &fops_htt_stats_mask);
 
        debugfs_create_file("htt_max_amsdu_ampdu", S_IRUSR | S_IWUSR,
                            ar->debug.debugfs_phy, ar,
                            &fops_htt_max_amsdu_ampdu);
 
-       debugfs_create_file("fw_dbglog", S_IRUSR, ar->debug.debugfs_phy,
-                           ar, &fops_fw_dbglog);
+       debugfs_create_file("fw_dbglog", S_IRUSR | S_IWUSR,
+                           ar->debug.debugfs_phy, ar, &fops_fw_dbglog);
 
        debugfs_create_file("cal_data", S_IRUSR, ar->debug.debugfs_phy,
                            ar, &fops_cal_data);
This page took 0.034215 seconds and 5 git commands to generate.