diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-01-31 14:00:54 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-09 20:35:40 +0100 |
commit | 609bd9445ed1cc76496a9d65ad1d158904d3cf47 (patch) | |
tree | b8ddb349366231d819e828cc8bf785f6da3d7e5d /src/mainboard/apple | |
parent | bf725b48f730b5996cf1ee7e5ac84ebc0ec78460 (diff) | |
download | coreboot-609bd9445ed1cc76496a9d65ad1d158904d3cf47.tar.xz |
ivy: Add a possiblity for mainboard early init.
This is needed for stout EC init.
Change-Id: I5c73499c17763229840152a473a2d820802ee2f6
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13535
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/apple')
-rw-r--r-- | src/mainboard/apple/macbookair4_2/early_southbridge.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/apple/macbookair4_2/early_southbridge.c b/src/mainboard/apple/macbookair4_2/early_southbridge.c index 576262d601..67f89db0e3 100644 --- a/src/mainboard/apple/macbookair4_2/early_southbridge.c +++ b/src/mainboard/apple/macbookair4_2/early_southbridge.c @@ -52,6 +52,9 @@ const struct southbridge_usb_port mainboard_usb_ports[] = { { 1, 0, -1 }, }; +void mainboard_early_init(int s3resume) { +} + void mainboard_get_spd(spd_raw_data *spd) { void *spd_file; |