diff options
author | Rob Herring <rob.herring@calxeda.com> | 2012-12-30 10:15:04 -0600 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-01-07 21:08:24 -0800 |
commit | c05ee88f6f20746aff938a85ef49e777ef4c6513 (patch) | |
tree | 06ca5bd0f1bf6c26d2d84e5300dc467774f1dab9 /arch/arm/mach-highbank/sysregs.h | |
parent | 3943deeddac65ab1d19fcc839ab58ef13a653532 (diff) | |
download | blackbird-obmc-linux-c05ee88f6f20746aff938a85ef49e777ef4c6513.tar.gz blackbird-obmc-linux-c05ee88f6f20746aff938a85ef49e777ef4c6513.zip |
ARM: highbank: fix typos with hignbank in power request functions
s/hignbank/highbank/
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-highbank/sysregs.h')
-rw-r--r-- | arch/arm/mach-highbank/sysregs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-highbank/sysregs.h b/arch/arm/mach-highbank/sysregs.h index e13e8ea7c6cb..707cfd3d80ec 100644 --- a/arch/arm/mach-highbank/sysregs.h +++ b/arch/arm/mach-highbank/sysregs.h @@ -44,25 +44,25 @@ static inline void highbank_set_core_pwr(void) writel_relaxed(1, sregs_base + SREG_CPU_PWR_CTRL(cpu)); } -static inline void hignbank_set_pwr_suspend(void) +static inline void highbank_set_pwr_suspend(void) { writel(HB_PWR_SUSPEND, sregs_base + HB_SREG_A9_PWR_REQ); highbank_set_core_pwr(); } -static inline void hignbank_set_pwr_shutdown(void) +static inline void highbank_set_pwr_shutdown(void) { writel(HB_PWR_SHUTDOWN, sregs_base + HB_SREG_A9_PWR_REQ); highbank_set_core_pwr(); } -static inline void hignbank_set_pwr_soft_reset(void) +static inline void highbank_set_pwr_soft_reset(void) { writel(HB_PWR_SOFT_RESET, sregs_base + HB_SREG_A9_PWR_REQ); highbank_set_core_pwr(); } -static inline void hignbank_set_pwr_hard_reset(void) +static inline void highbank_set_pwr_hard_reset(void) { writel(HB_PWR_HARD_RESET, sregs_base + HB_SREG_A9_PWR_REQ); highbank_set_core_pwr(); |