diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-13 13:30:59 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-18 12:18:07 +0000 |
commit | 892e9f6030f2ade15067ec7b51c819130072e91b (patch) | |
tree | 1bab647a40aa1c5a46b1ff61c779d6c2125f22a9 /src/southbridge/intel/i82801bx/watchdog.c | |
parent | 152f1c918fdeb638d434b224ad1ca3e65aeeba78 (diff) |
sb/intel/i82801bx: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I661b2435d9f0306b246a3e89aac24eb30c959085
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26253
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/southbridge/intel/i82801bx/watchdog.c')
-rw-r--r-- | src/southbridge/intel/i82801bx/watchdog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801bx/watchdog.c b/src/southbridge/intel/i82801bx/watchdog.c index 60a7b57b6c..d0af76c030 100644 --- a/src/southbridge/intel/i82801bx/watchdog.c +++ b/src/southbridge/intel/i82801bx/watchdog.c @@ -24,7 +24,7 @@ void watchdog_off(void) { - device_t dev; + struct device *dev; unsigned long value, base; /* Turn off the ICH5 watchdog. */ |