diff options
author | Jiuyang Liu (Sequencer) <liujiuyang1994@gmail.com> | 2020-01-24 07:34:10 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-01-24 07:34:10 +0530 |
commit | 85647a1a76394ab2fe4305dfdccb439d657610c0 (patch) | |
tree | 1ff3f805160f389d1c7d4c7b1271998a5ca733f6 /platform | |
parent | 021b9e7c767f101e80fdd4868ad95177fa1cf1da (diff) |
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) <liujiuyang1994@gmail.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'platform')
-rw-r--r-- | platform/template/platform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c index 20ae579..1646c8c 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, |