From: Greg Kurz Date: Fri, 20 May 2016 14:18:57 +0000 (+0200) Subject: powerpc/pseries: Fix trivial typo in function name X-Git-Tag: v4.8-rc1~85^2~229 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e45273eacc829a44fae1d3df14065d6947335ae;p=platform%2Fkernel%2Flinux-exynos.git powerpc/pseries: Fix trivial typo in function name Signed-off-by: Greg Kurz Signed-off-by: Michael Ellerman --- diff --git a/arch/powerpc/kernel/rtasd.c b/arch/powerpc/kernel/rtasd.c index c638e24..e864b7c 100644 --- a/arch/powerpc/kernel/rtasd.c +++ b/arch/powerpc/kernel/rtasd.c @@ -483,7 +483,7 @@ static void rtas_event_scan(struct work_struct *w) } #ifdef CONFIG_PPC64 -static void retreive_nvram_error_log(void) +static void retrieve_nvram_error_log(void) { unsigned int err_type ; int rc ; @@ -501,7 +501,7 @@ static void retreive_nvram_error_log(void) } } #else /* CONFIG_PPC64 */ -static void retreive_nvram_error_log(void) +static void retrieve_nvram_error_log(void) { } #endif /* CONFIG_PPC64 */ @@ -513,7 +513,7 @@ static void start_event_scan(void) (30000 / rtas_event_scan_rate)); /* Retrieve errors from nvram if any */ - retreive_nvram_error_log(); + retrieve_nvram_error_log(); schedule_delayed_work_on(cpumask_first(cpu_online_mask), &event_scan_work, event_scan_delay);