wl12xx: change debug_level module param sysfs permissions
changed the visibility of the debug_level module parameter in the filesystem to be readable and writable to the root user. It is now accessible under /sys/module/wl12xx/parameters removed the debug_level debugfs file that was created under /sys/kernel/debug/... Signed-off-by: Guy Eilam <guy@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
This commit is contained in:
parent
2d6e4e76d1
commit
491bbd6bdd
|
@ -402,11 +402,6 @@ static int wl1271_debugfs_add_files(struct wl1271 *wl,
|
||||||
|
|
||||||
DEBUGFS_ADD(gpio_power, rootdir);
|
DEBUGFS_ADD(gpio_power, rootdir);
|
||||||
|
|
||||||
entry = debugfs_create_x32("debug_level", 0600, rootdir,
|
|
||||||
&wl12xx_debug_level);
|
|
||||||
if (!entry || IS_ERR(entry))
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err:
|
err:
|
||||||
|
|
|
@ -3334,9 +3334,9 @@ int wl1271_free_hw(struct wl1271 *wl)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(wl1271_free_hw);
|
EXPORT_SYMBOL_GPL(wl1271_free_hw);
|
||||||
|
|
||||||
u32 wl12xx_debug_level;
|
u32 wl12xx_debug_level = DEBUG_NONE;
|
||||||
EXPORT_SYMBOL_GPL(wl12xx_debug_level);
|
EXPORT_SYMBOL_GPL(wl12xx_debug_level);
|
||||||
module_param_named(debug_level, wl12xx_debug_level, uint, DEBUG_NONE);
|
module_param_named(debug_level, wl12xx_debug_level, uint, S_IRUSR | S_IWUSR);
|
||||||
MODULE_PARM_DESC(debug_level, "wl12xx debugging level");
|
MODULE_PARM_DESC(debug_level, "wl12xx debugging level");
|
||||||
|
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
Loading…
Reference in New Issue