Commit 6e45273e authored by Greg Kurz's avatar Greg Kurz Committed by Michael Ellerman

powerpc/pseries: Fix trivial typo in function name

Signed-off-by: default avatarGreg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 1e61423f
...@@ -483,7 +483,7 @@ static void rtas_event_scan(struct work_struct *w) ...@@ -483,7 +483,7 @@ static void rtas_event_scan(struct work_struct *w)
} }
#ifdef CONFIG_PPC64 #ifdef CONFIG_PPC64
static void retreive_nvram_error_log(void) static void retrieve_nvram_error_log(void)
{ {
unsigned int err_type ; unsigned int err_type ;
int rc ; int rc ;
...@@ -501,7 +501,7 @@ static void retreive_nvram_error_log(void) ...@@ -501,7 +501,7 @@ static void retreive_nvram_error_log(void)
} }
} }
#else /* CONFIG_PPC64 */ #else /* CONFIG_PPC64 */
static void retreive_nvram_error_log(void) static void retrieve_nvram_error_log(void)
{ {
} }
#endif /* CONFIG_PPC64 */ #endif /* CONFIG_PPC64 */
...@@ -513,7 +513,7 @@ static void start_event_scan(void) ...@@ -513,7 +513,7 @@ static void start_event_scan(void)
(30000 / rtas_event_scan_rate)); (30000 / rtas_event_scan_rate));
/* Retrieve errors from nvram if any */ /* Retrieve errors from nvram if any */
retreive_nvram_error_log(); retrieve_nvram_error_log();
schedule_delayed_work_on(cpumask_first(cpu_online_mask), schedule_delayed_work_on(cpumask_first(cpu_online_mask),
&event_scan_work, event_scan_delay); &event_scan_work, event_scan_delay);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment