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

Commit 512ea3bc authored by Chihau Chau's avatar Chihau Chau Committed by James Morris
Browse files

Security: key: keyring: fix some code style issues



This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> and some
code style issues like to put a else sentence below close brace '}' and
to replace a tab instead of some space characters.

Signed-off-by: default avatarChihau Chau <chihau@gmail.com>
Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarJames Morris <jmorris@namei.org>
parent c43a7523
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
#include <linux/seq_file.h>
#include <linux/err.h>
#include <keys/keyring-type.h>
#include <asm/uaccess.h>
#include <linux/uaccess.h>
#include "internal.h"

/*
@@ -773,8 +773,7 @@ int __key_link(struct key *keyring, struct key *key)
		smp_wmb();
		klist->nkeys++;
		smp_wmb();
	}
	else {
	} else {
		/* grow the key list */
		max = 4;
		if (klist)