projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac60ab4
)
KEYS: Fix missing statics
author
David Howells
<dhowells@redhat.com>
Tue, 16 Sep 2014 16:07:07 +0000
(17:07 +0100)
committer
David Howells
<dhowells@redhat.com>
Tue, 16 Sep 2014 16:07:07 +0000
(17:07 +0100)
Fix missing statics (found by checker).
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
security/keys/request_key_auth.c
patch
|
blob
|
blame
|
history
diff --git
a/security/keys/request_key_auth.c
b/security/keys/request_key_auth.c
index 842e6f410d5052b6e3dad7c7d0ac8d6290293733..739e7455d388192a9e505679c4ac0782a09921c5 100644
(file)
--- a/
security/keys/request_key_auth.c
+++ b/
security/keys/request_key_auth.c
@@
-44,12
+44,12
@@
struct key_type key_type_request_key_auth = {
.read = request_key_auth_read,
};
-int request_key_auth_preparse(struct key_preparsed_payload *prep)
+
static
int request_key_auth_preparse(struct key_preparsed_payload *prep)
{
return 0;
}
-void request_key_auth_free_preparse(struct key_preparsed_payload *prep)
+
static
void request_key_auth_free_preparse(struct key_preparsed_payload *prep)
{
}