diff options
author | Kuninori Morimoto <[email protected]> | 2013-09-23 23:04:37 -0700 |
---|---|---|
committer | Simon Horman <[email protected]> | 2013-09-26 10:25:11 +0900 |
commit | 117378e58365a44b568655e5aa49b3f6daf900c4 (patch) | |
tree | f151864d5a29688bfbda42ddde0fde043fb95133 | |
parent | cd4ab0420fd6233766fd87fa295d6e3cfb719c01 (diff) |
ARM: shmobile: r8a7778: r8a7778_register_hspi() become static
r8a7778_register_hspi() used only from setup-r8a7778.c
it can be static
Signed-off-by: Kuninori Morimoto <[email protected]>
Signed-off-by: Simon Horman <[email protected]>
-rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7778.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7778.c b/arch/arm/mach-shmobile/setup-r8a7778.c index f5e15c926fef..468ee6551184 100644 --- a/arch/arm/mach-shmobile/setup-r8a7778.c +++ b/arch/arm/mach-shmobile/setup-r8a7778.c @@ -258,7 +258,7 @@ static struct resource hspi_resources[] __initdata = { DEFINE_RES_IRQ(gic_iid(0x75)), }; -void __init r8a7778_register_hspi(int id) +static void __init r8a7778_register_hspi(int id) { BUG_ON(id < 0 || id > 2); |