From 85647a1a76394ab2fe4305dfdccb439d657610c0 Mon Sep 17 00:00:00 2001 From: "Jiuyang Liu (Sequencer)" Date: Fri, 24 Jan 2020 07:34:10 +0530 Subject: [PATCH] platform: template: typo fix in system reboot/shutdown names This patch does minor typo fix in system reboot/shutdown names in platform operations. Signed-off-by: Jiuyang Liu (Sequencer) Reviewed-by: Alistair Francis Signed-off-by: Anup Patel --- platform/template/platform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/template/platform.c b/platform/template/platform.c index 20ae579a..1646c8c6 100644 --- a/platform/template/platform.c +++ b/platform/template/platform.c @@ -213,8 +213,8 @@ const struct sbi_platform_operations platform_ops = { .timer_event_stop = platform_timer_event_stop, .timer_event_start = platform_timer_event_start, .timer_init = platform_timer_init, - .system_reboot = platform_system_down, - .system_shutdown = platform_system_down + .system_reboot = platform_system_reboot, + .system_shutdown = platform_system_shutdown }; const struct sbi_platform platform = { .opensbi_version = OPENSBI_VERSION,