diff options
author | Nico Huber <nico.h@gmx.de> | 2018-10-06 17:53:14 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-22 08:34:19 +0000 |
commit | e8791361b5825d2133c778c63a520d45540dcaf2 (patch) | |
tree | 534c2a3ecb4f05f2cf771830cc8f70b91b90bece /src/mainboard/google/smaug/pmic.c | |
parent | 4f32b64e4f88038347bec1d80ee2af41470d03ca (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/smaug/pmic.c')
-rw-r--r-- | src/mainboard/google/smaug/pmic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/smaug/pmic.c b/src/mainboard/google/smaug/pmic.c index 77de277afa..75075ad6fd 100644 --- a/src/mainboard/google/smaug/pmic.c +++ b/src/mainboard/google/smaug/pmic.c @@ -47,7 +47,7 @@ static void pmic_write_reg(unsigned bus, uint8_t chip, uint8_t reg, uint8_t val, printk(BIOS_ERR, "%s: reg = 0x%02X, value = 0x%02X failed!\n", __func__, reg, val); /* Reset the board on any PMIC write error */ - hard_reset(); + board_reset(); } else { if (delay) udelay(500); |