Skip to content

Commit c05ee88

Browse files
Rob Herringolofj
authored andcommitted
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>
1 parent 3943dee commit c05ee88

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

arch/arm/mach-highbank/highbank.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ static struct sys_timer highbank_timer = {
135135

136136
static void highbank_power_off(void)
137137
{
138-
hignbank_set_pwr_shutdown();
138+
highbank_set_pwr_shutdown();
139139

140140
while (1)
141141
cpu_do_idle();

arch/arm/mach-highbank/pm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ static int highbank_suspend_finish(unsigned long val)
3232

3333
static int highbank_pm_enter(suspend_state_t state)
3434
{
35-
hignbank_set_pwr_suspend();
35+
highbank_set_pwr_suspend();
3636
highbank_set_cpu_jump(0, cpu_resume);
3737
cpu_suspend(0, highbank_suspend_finish);
3838

arch/arm/mach-highbank/sysregs.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,25 @@ static inline void highbank_set_core_pwr(void)
4444
writel_relaxed(1, sregs_base + SREG_CPU_PWR_CTRL(cpu));
4545
}
4646

47-
static inline void hignbank_set_pwr_suspend(void)
47+
static inline void highbank_set_pwr_suspend(void)
4848
{
4949
writel(HB_PWR_SUSPEND, sregs_base + HB_SREG_A9_PWR_REQ);
5050
highbank_set_core_pwr();
5151
}
5252

53-
static inline void hignbank_set_pwr_shutdown(void)
53+
static inline void highbank_set_pwr_shutdown(void)
5454
{
5555
writel(HB_PWR_SHUTDOWN, sregs_base + HB_SREG_A9_PWR_REQ);
5656
highbank_set_core_pwr();
5757
}
5858

59-
static inline void hignbank_set_pwr_soft_reset(void)
59+
static inline void highbank_set_pwr_soft_reset(void)
6060
{
6161
writel(HB_PWR_SOFT_RESET, sregs_base + HB_SREG_A9_PWR_REQ);
6262
highbank_set_core_pwr();
6363
}
6464

65-
static inline void hignbank_set_pwr_hard_reset(void)
65+
static inline void highbank_set_pwr_hard_reset(void)
6666
{
6767
writel(HB_PWR_HARD_RESET, sregs_base + HB_SREG_A9_PWR_REQ);
6868
highbank_set_core_pwr();

arch/arm/mach-highbank/system.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
void highbank_restart(char mode, const char *cmd)
2323
{
2424
if (mode == 'h')
25-
hignbank_set_pwr_hard_reset();
25+
highbank_set_pwr_hard_reset();
2626
else
27-
hignbank_set_pwr_soft_reset();
27+
highbank_set_pwr_soft_reset();
2828

2929
while (1)
3030
cpu_do_idle();

0 commit comments

Comments
 (0)