diff options
| author | Anup Patel <[email protected]> | 2020-04-24 12:26:22 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2020-04-27 14:35:29 +0530 |
| commit | a9eac67ad019200e9a281a6fc10e394353a026f2 (patch) | |
| tree | bb99209d3573cfc5a6e0a2617163a160e5e452a7 /lib/utils/sys | |
| parent | 1bb00ab3aeabde78579774eef8eadc7b7e765924 (diff) | |
include: sbi_platform: Combine reboot and shutdown into one callback
We can achieve shutdown, cold reboot, and warm reboot using just
one sbi_platform callback so we combine system_reboot() and
system_shutdown() callbacks into one system_reset() callback.
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Atish Patra <[email protected]>
Diffstat (limited to 'lib/utils/sys')
| -rw-r--r-- | lib/utils/sys/htif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/sys/htif.c b/lib/utils/sys/htif.c index e82590fe..ed800a50 100644 --- a/lib/utils/sys/htif.c +++ b/lib/utils/sys/htif.c @@ -140,7 +140,7 @@ int htif_getc(void) return ch - 1; } -int htif_system_down(u32 type) +int htif_system_reset(u32 type) { while (1) { fromhost = 0; |
