MIPS: Make declaration for function `memory_region_available` static
authorMathieu Malaterre <malat@debian.org>
Tue, 2 Jan 2018 18:52:21 +0000 (19:52 +0100)
committerJames Hogan <jhogan@kernel.org>
Mon, 19 Feb 2018 10:55:38 +0000 (10:55 +0000)
Fix non-fatal warning during compilation using W=1:

arch/mips/kernel/setup.c:158:13: warning: no previous prototype for ‘memory_region_available’ [-Wmissing-prototypes]
 bool __init memory_region_available(phys_addr_t start, phys_addr_t size)
             ^~~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Mathieu Malaterre <malat@debian.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/18175/
[jhogan@kernel.org: tweak whitespace]
Signed-off-by: James Hogan <jhogan@kernel.org>
arch/mips/kernel/setup.c

index 5f8b0a9e30b3d6faec9befca1e759a8f9263f8c8..28be8f238e772161dd07fc553d5caacdb1bc267c 100644 (file)
@@ -155,7 +155,8 @@ void __init detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_add
        add_memory_region(start, size, BOOT_MEM_RAM);
 }
 
-bool __init memory_region_available(phys_addr_t start, phys_addr_t size)
+static bool __init __maybe_unused memory_region_available(phys_addr_t start,
+                                                         phys_addr_t size)
 {
        int i;
        bool in_ram = false, free = true;