diff options
author | H Hartley Sweeten <[email protected]> | 2009-12-15 15:05:12 -0800 |
---|---|---|
committer | James Morris <[email protected]> | 2009-12-17 09:24:22 +1100 |
commit | dd880fbe8e4792d1185a5101dc751f49eab0a509 (patch) | |
tree | c72673ed9e20c1967becd4118c77476406370d05 | |
parent | fa1cc7b5a5c4171dfdcac855428295340ccf87ec (diff) |
security/min_addr.c: make init_mmap_min_addr() static
init_mmap_min_addr() is a pure_initcall and should be static.
Signed-off-by: H Hartley Sweeten <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: James Morris <[email protected]>
-rw-r--r-- | security/min_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/min_addr.c b/security/min_addr.c index fc43c9d37084..e86f297522bf 100644 --- a/security/min_addr.c +++ b/security/min_addr.c @@ -43,7 +43,7 @@ int mmap_min_addr_handler(struct ctl_table *table, int write, return ret; } -int __init init_mmap_min_addr(void) +static int __init init_mmap_min_addr(void) { update_mmap_min_addr(); |