diff options
| author | Anup Patel <[email protected]> | 2021-04-22 11:53:32 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2021-04-28 17:25:00 +0530 |
| commit | 043d088e3964ec64b091f739e2282f53f7d264fb (patch) | |
| tree | e5ec82451c097df3f3416ec077752527d81107a7 /include/sbi_utils/sys | |
| parent | dc39c7b630a607b96c25f8ea50f0bb1af619928a (diff) | |
lib: sbi: Simplify system reset platform operations
Instead of having system_reset_check() and system_reset() callbacks
in platform operations, it will be much simpler for reset driver to
directly register these operations as a device to the sbi_system
implementation.
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Alistair Francis <[email protected]>
Diffstat (limited to 'include/sbi_utils/sys')
| -rw-r--r-- | include/sbi_utils/sys/htif.h | 4 | ||||
| -rw-r--r-- | include/sbi_utils/sys/sifive_test.h | 4 |
2 files changed, 1 insertions, 7 deletions
diff --git a/include/sbi_utils/sys/htif.h b/include/sbi_utils/sys/htif.h index 8073a447..9cc96345 100644 --- a/include/sbi_utils/sys/htif.h +++ b/include/sbi_utils/sys/htif.h @@ -12,8 +12,6 @@ int htif_serial_init(void); -int htif_system_reset_check(u32 type, u32 reason); - -void htif_system_reset(u32 type, u32 reason); +int htif_system_reset_init(void); #endif diff --git a/include/sbi_utils/sys/sifive_test.h b/include/sbi_utils/sys/sifive_test.h index 958622e6..0a09499d 100644 --- a/include/sbi_utils/sys/sifive_test.h +++ b/include/sbi_utils/sys/sifive_test.h @@ -12,10 +12,6 @@ #include <sbi/sbi_types.h> -int sifive_test_system_reset_check(u32 type, u32 reason); - -void sifive_test_system_reset(u32 type, u32 reason); - int sifive_test_init(unsigned long base); #endif |
