aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/reef/mainboard.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2016-08-30 17:31:43 -0500
committerAaron Durbin <adurbin@chromium.org>2016-09-01 00:21:05 +0200
commite603a90045c2278adef308c85c2807dde38fa1b2 (patch)
treeab998bf89eb6376ae800c4a95f23ec5714fd7701 /src/mainboard/google/reef/mainboard.c
parent9a251c0280c3fdb57b7370e0670b724385b328d8 (diff)
mainboard/google/reef: drop proto gpio support
Many changes make proto boards very hard to work with since proto boards were using A stepping processors. Everyone has moved on. Therefore, drop non-proto support. BUG=chrome-os-partner:56791 Change-Id: I2985e3965b1b69445e22506bd664b4cbca13c8ab Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/16377 Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/google/reef/mainboard.c')
-rw-r--r--src/mainboard/google/reef/mainboard.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/google/reef/mainboard.c b/src/mainboard/google/reef/mainboard.c
index 0c4ba8dc23..92e5609b91 100644
--- a/src/mainboard/google/reef/mainboard.c
+++ b/src/mainboard/google/reef/mainboard.c
@@ -33,14 +33,6 @@ static void mainboard_init(void *chip_info)
gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));
- /* Apply proto board settings if board matches. */
- if (boardid == 0)
- gpio_configure_pads(proto_diff_table,
- ARRAY_SIZE(proto_diff_table));
- else
- gpio_configure_pads(nonproto_diff_table,
- ARRAY_SIZE(nonproto_diff_table));
-
mainboard_ec_init();
}