diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2008-05-08 00:27:07 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-05-14 08:31:46 -0400 |
commit | 09de9ff872bca25ba717a7075c9ee49b1bdb56d2 (patch) | |
tree | ab4da7df326889b689c7767b6b5c3b711ca2538e /arch/powerpc/mm/init_64.c | |
parent | 5f25f06529ecb4b20efc7ba00de599f5b9f4b63c (diff) |
[POWERPC] Fix sparse warnings in arch/powerpc/mm
Make two vmemmap helpers static in init_64.c
Make stab variables static in stab.c
Make psize defs static in hash_utils_64.c
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/mm/init_64.c')
-rw-r--r-- | arch/powerpc/mm/init_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/init_64.c b/arch/powerpc/mm/init_64.c index c5ac532a0161..1e52e97d7409 100644 --- a/arch/powerpc/mm/init_64.c +++ b/arch/powerpc/mm/init_64.c | |||
@@ -183,7 +183,7 @@ void pgtable_cache_init(void) | |||
183 | * do this by hand as the proffered address may not be correctly aligned. | 183 | * do this by hand as the proffered address may not be correctly aligned. |
184 | * Subtraction of non-aligned pointers produces undefined results. | 184 | * Subtraction of non-aligned pointers produces undefined results. |
185 | */ | 185 | */ |
186 | unsigned long __meminit vmemmap_section_start(unsigned long page) | 186 | static unsigned long __meminit vmemmap_section_start(unsigned long page) |
187 | { | 187 | { |
188 | unsigned long offset = page - ((unsigned long)(vmemmap)); | 188 | unsigned long offset = page - ((unsigned long)(vmemmap)); |
189 | 189 | ||
@@ -196,7 +196,7 @@ unsigned long __meminit vmemmap_section_start(unsigned long page) | |||
196 | * which overlaps this vmemmap page is initialised then this page is | 196 | * which overlaps this vmemmap page is initialised then this page is |
197 | * initialised already. | 197 | * initialised already. |
198 | */ | 198 | */ |
199 | int __meminit vmemmap_populated(unsigned long start, int page_size) | 199 | static int __meminit vmemmap_populated(unsigned long start, int page_size) |
200 | { | 200 | { |
201 | unsigned long end = start + page_size; | 201 | unsigned long end = start + page_size; |
202 | 202 | ||