summaryrefslogtreecommitdiff
path: root/arch/arm/mm/ptdump_debugfs.c
diff options
context:
space:
mode:
authorJisheng Zhang (syna) <Jisheng.Zhang@synaptics.com>2021-04-12 11:12:36 +0300
committerRussell King <rmk+kernel@armlinux.org.uk>2021-04-18 21:15:12 +0300
commita5e8acd94fe1fe60d92176424a2be6e52c8bd058 (patch)
tree6657fb3eb423cfd058616872cba3a49d2281173c /arch/arm/mm/ptdump_debugfs.c
parentaefdd4383bb0057c1ec1e32e7de348ccd749eb20 (diff)
downloadlinux-a5e8acd94fe1fe60d92176424a2be6e52c8bd058.tar.xz
ARM: 9073/1: ptdump: add __init section marker to three functions
They are not needed after booting, so mark them as __init to move them to the .init section. Signed-off-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com> Reviewed-by: Steven Price <steven.price@arm.com> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/mm/ptdump_debugfs.c')
-rw-r--r--arch/arm/mm/ptdump_debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/ptdump_debugfs.c b/arch/arm/mm/ptdump_debugfs.c
index 598b636615a2..8df9afac8d81 100644
--- a/arch/arm/mm/ptdump_debugfs.c
+++ b/arch/arm/mm/ptdump_debugfs.c
@@ -24,7 +24,7 @@ static const struct file_operations ptdump_fops = {
.release = single_release,
};
-void ptdump_debugfs_register(struct ptdump_info *info, const char *name)
+void __init ptdump_debugfs_register(struct ptdump_info *info, const char *name)
{
debugfs_create_file(name, 0400, NULL, info, &ptdump_fops);
}