[PATCH] Staging: kernel: user: fixed some coding style issues

From: carlosteniswarrior
Date: Sat Apr 11 2020 - 15:42:54 EST


From: porfavorde <carlosteniswarrior@xxxxxxxxx>

Fixed a coding style issue with a for loop and a trailing whitespace in
the comments

Signed-off-by: Carlos Guerrero Ãlvarez <carlosteniswarrior@xxxxxxxxx>
---
kernel/user.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/user.c b/kernel/user.c
index 5235d7f49982..4228ec04678d 100644
--- a/kernel/user.c
+++ b/kernel/user.c
@@ -6,7 +6,7 @@
*
* We have a per-user structure to keep track of how many
* processes, files etc the user has claimed, in order to be
- * able to have per-user limits for system resources.
+ * able to have per-user limits for system resources.
*/

#include <linux/init.h>
@@ -216,7 +216,7 @@ static int __init uid_cache_init(void)
uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);

- for(n = 0; n < UIDHASH_SZ; ++n)
+ for (n = 0; n < UIDHASH_SZ; ++n)
INIT_HLIST_HEAD(uidhash_table + n);

/* Insert the root user immediately (init already runs as root) */
--
2.25.1