File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ static struct sys_timer highbank_timer = {
135
135
136
136
static void highbank_power_off (void )
137
137
{
138
- hignbank_set_pwr_shutdown ();
138
+ highbank_set_pwr_shutdown ();
139
139
140
140
while (1 )
141
141
cpu_do_idle ();
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ static int highbank_suspend_finish(unsigned long val)
32
32
33
33
static int highbank_pm_enter (suspend_state_t state )
34
34
{
35
- hignbank_set_pwr_suspend ();
35
+ highbank_set_pwr_suspend ();
36
36
highbank_set_cpu_jump (0 , cpu_resume );
37
37
cpu_suspend (0 , highbank_suspend_finish );
38
38
Original file line number Diff line number Diff line change @@ -44,25 +44,25 @@ static inline void highbank_set_core_pwr(void)
44
44
writel_relaxed (1 , sregs_base + SREG_CPU_PWR_CTRL (cpu ));
45
45
}
46
46
47
- static inline void hignbank_set_pwr_suspend (void )
47
+ static inline void highbank_set_pwr_suspend (void )
48
48
{
49
49
writel (HB_PWR_SUSPEND , sregs_base + HB_SREG_A9_PWR_REQ );
50
50
highbank_set_core_pwr ();
51
51
}
52
52
53
- static inline void hignbank_set_pwr_shutdown (void )
53
+ static inline void highbank_set_pwr_shutdown (void )
54
54
{
55
55
writel (HB_PWR_SHUTDOWN , sregs_base + HB_SREG_A9_PWR_REQ );
56
56
highbank_set_core_pwr ();
57
57
}
58
58
59
- static inline void hignbank_set_pwr_soft_reset (void )
59
+ static inline void highbank_set_pwr_soft_reset (void )
60
60
{
61
61
writel (HB_PWR_SOFT_RESET , sregs_base + HB_SREG_A9_PWR_REQ );
62
62
highbank_set_core_pwr ();
63
63
}
64
64
65
- static inline void hignbank_set_pwr_hard_reset (void )
65
+ static inline void highbank_set_pwr_hard_reset (void )
66
66
{
67
67
writel (HB_PWR_HARD_RESET , sregs_base + HB_SREG_A9_PWR_REQ );
68
68
highbank_set_core_pwr ();
Original file line number Diff line number Diff line change 22
22
void highbank_restart (char mode , const char * cmd )
23
23
{
24
24
if (mode == 'h' )
25
- hignbank_set_pwr_hard_reset ();
25
+ highbank_set_pwr_hard_reset ();
26
26
else
27
- hignbank_set_pwr_soft_reset ();
27
+ highbank_set_pwr_soft_reset ();
28
28
29
29
while (1 )
30
30
cpu_do_idle ();
You can’t perform that action at this time.
0 commit comments