Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 491bbd6b authored by Guy Eilam's avatar Guy Eilam Committed by Luciano Coelho
Browse files

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: default avatarGuy Eilam <guy@wizery.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent 2d6e4e76
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -402,11 +402,6 @@ static int wl1271_debugfs_add_files(struct wl1271 *wl,

	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;

err:
+2 −2
Original line number Diff line number Diff line
@@ -3334,9 +3334,9 @@ int wl1271_free_hw(struct wl1271 *wl)
}
EXPORT_SYMBOL_GPL(wl1271_free_hw);

u32 wl12xx_debug_level;
u32 wl12xx_debug_level = DEBUG_NONE;
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_LICENSE("GPL");