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

Commit 8abcae44 authored by Eric Salem's avatar Eric Salem Committed by Greg Kroah-Hartman
Browse files

Staging: android: fixed permissions style issue



Fixed a coding style issue. Changed symbolic permissions to octal.

Signed-off-by: default avatarEric Salem <ericsalem@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 896075a6
Loading
Loading
Loading
Loading
+4 −5
Original line number Original line Diff line number Diff line
@@ -204,10 +204,9 @@ device_initcall(lowmem_init);
 * not really modular, but the easiest way to keep compat with existing
 * not really modular, but the easiest way to keep compat with existing
 * bootargs behaviour is to continue using module_param here.
 * bootargs behaviour is to continue using module_param here.
 */
 */
module_param_named(cost, lowmem_shrinker.seeks, int, S_IRUGO | S_IWUSR);
module_param_named(cost, lowmem_shrinker.seeks, int, 0644);
module_param_array_named(adj, lowmem_adj, short, &lowmem_adj_size,
module_param_array_named(adj, lowmem_adj, short, &lowmem_adj_size, 0644);
			 S_IRUGO | S_IWUSR);
module_param_array_named(minfree, lowmem_minfree, uint, &lowmem_minfree_size,
module_param_array_named(minfree, lowmem_minfree, uint, &lowmem_minfree_size,
			 S_IRUGO | S_IWUSR);
			 0644);
module_param_named(debug_level, lowmem_debug_level, uint, S_IRUGO | S_IWUSR);
module_param_named(debug_level, lowmem_debug_level, uint, 0644);