diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-02 12:11:30 (GMT) |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-14 07:36:13 (GMT) |
commit | a89be270e7eb42fca6c77bb25bd77971569f31ee (patch) | |
tree | b28c9b97c49b0e1c85ce3a0fc0236f56b0d8c231 /arch/arm/mach-uniphier | |
parent | 4b50369fb53599aca34636d3a6f70117fe38bf07 (diff) | |
download | u-boot-a89be270e7eb42fca6c77bb25bd77971569f31ee.tar.xz |
ARM: uniphier: add missing static qualifier
This function is for local use in the file.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier')
-rw-r--r-- | arch/arm/mach-uniphier/boot-mode/boot-mode-proxstream2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-uniphier/boot-mode/boot-mode-proxstream2.c b/arch/arm/mach-uniphier/boot-mode/boot-mode-proxstream2.c index de12953..3769ec5 100644 --- a/arch/arm/mach-uniphier/boot-mode/boot-mode-proxstream2.c +++ b/arch/arm/mach-uniphier/boot-mode/boot-mode-proxstream2.c @@ -46,7 +46,7 @@ static struct boot_device_info boot_device_table[] = { {BOOT_DEVICE_NONE, "Reserved"}, }; -int get_boot_mode_sel(void) +static int get_boot_mode_sel(void) { return (readl(SG_PINMON0) >> 1) & 0x1f; } |