diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-03-30 20:17:02 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-04-01 00:59:47 +0900 |
commit | 5b660066464e3270e5b9c236bf15829df868176c (patch) | |
tree | 08a9af0114bba334d99743aa8711ef1e98ab7e8b /arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c | |
parent | a75ecfc2a637d581bc6ab21676f73e8eee1b13d2 (diff) | |
download | u-boot-imx-5b660066464e3270e5b9c236bf15829df868176c.zip u-boot-imx-5b660066464e3270e5b9c236bf15829df868176c.tar.gz u-boot-imx-5b660066464e3270e5b9c236bf15829df868176c.tar.bz2 |
ARM: uniphier: rename function names ph1_* to uniphier_*
Eliminate the "ph1"_ prefixes from function names because "uniphier_"
describes the SoC familiy better.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c')
-rw-r--r-- | arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c b/arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c index 0ec6a08..f9726f1 100644 --- a/arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c +++ b/arch/arm/mach-uniphier/boot-mode/boot-mode-pro5.c @@ -52,7 +52,7 @@ static int get_boot_mode_sel(void) return (readl(SG_PINMON0) >> 1) & 0x1f; } -u32 ph1_pro5_boot_device(void) +u32 uniphier_pro5_boot_device(void) { int boot_mode; @@ -61,7 +61,7 @@ u32 ph1_pro5_boot_device(void) return boot_device_table[boot_mode].type; } -void ph1_pro5_boot_mode_show(void) +void uniphier_pro5_boot_mode_show(void) { int mode_sel, i; |