aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/storm/reset.c
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2018-10-06 17:53:14 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-10-22 08:34:19 +0000
commite8791361b5825d2133c778c63a520d45540dcaf2 (patch)
tree534c2a3ecb4f05f2cf771830cc8f70b91b90bece /src/mainboard/google/storm/reset.c
parent4f32b64e4f88038347bec1d80ee2af41470d03ca (diff)
reset: Convert individual boards to `board_reset()`
Change-Id: I6182da172ae2f4107a9b5d8190e4b3b10ed2f0b9 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/29048 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/mainboard/google/storm/reset.c')
-rw-r--r--src/mainboard/google/storm/reset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/storm/reset.c b/src/mainboard/google/storm/reset.c
index d8f25274b1..f598de99c5 100644
--- a/src/mainboard/google/storm/reset.c
+++ b/src/mainboard/google/storm/reset.c
@@ -39,7 +39,7 @@ static void wdog_reset(void)
write32(APCS_WDT0_CPU0_WDOG_EXPIRED_ENABLE, 1);
}
-void do_hard_reset(void)
+void do_board_reset(void)
{
wdog_reset();
}