diff options
author | Jisheng Zhang <jszhang@marvell.com> | 2015-11-20 17:59:10 +0800 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2015-12-02 12:17:11 +0000 |
commit | a7c61a3452d39078919f0e1f493ff966fb64f0db (patch) | |
tree | 8c468378d735c901987460c7a14c958ea4b432c7 /arch/arm64/mm/init.c | |
parent | 76c714be0e5e60c935a53b31be58939510ba1d0f (diff) | |
download | lwn-a7c61a3452d39078919f0e1f493ff966fb64f0db.tar.gz lwn-a7c61a3452d39078919f0e1f493ff966fb64f0db.zip |
arm64: add __init/__initdata section marker to some functions/variables
These functions/variables are not needed after booting, so mark them
as __init or __initdata.
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/mm/init.c')
-rw-r--r-- | arch/arm64/mm/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c index 17bf39ac83ba..9b8cc673f43c 100644 --- a/arch/arm64/mm/init.c +++ b/arch/arm64/mm/init.c @@ -71,7 +71,7 @@ early_param("initrd", early_initrd); * currently assumes that for memory starting above 4G, 32-bit devices will * use a DMA offset. */ -static phys_addr_t max_zone_dma_phys(void) +static phys_addr_t __init max_zone_dma_phys(void) { phys_addr_t offset = memblock_start_of_DRAM() & GENMASK_ULL(63, 32); return min(offset + (1ULL << 32), memblock_end_of_DRAM()); @@ -126,11 +126,11 @@ EXPORT_SYMBOL(pfn_valid); #endif #ifndef CONFIG_SPARSEMEM -static void arm64_memory_present(void) +static void __init arm64_memory_present(void) { } #else -static void arm64_memory_present(void) +static void __init arm64_memory_present(void) { struct memblock_region *reg; |