diff options
author | David Hendricks <dhendrix@chromium.org> | 2015-01-09 11:46:43 -0800 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2015-01-10 09:20:34 +0100 |
commit | 054c83ac72f162b7686a4bfa0013658aef11e0f6 (patch) | |
tree | a79df9409913411b9be34893a85c260c557e12b9 /src/mainboard/google/daisy | |
parent | 2fcf6f1cafca99105f2ce7485c81d8c9eb74e2de (diff) |
Fix mainboard names for daisy and peach_pit
This just fixes name members of mainboard_ops for daisy and
peach_pit, which were never officially supported but used for
development and proof-of-concept.
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Change-Id: Ia1f9b62bc9d91ed634ec1eaa7f907e8aed977f96
Reviewed-on: http://review.coreboot.org/8184
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/mainboard/google/daisy')
-rw-r--r-- | src/mainboard/google/daisy/mainboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/daisy/mainboard.c b/src/mainboard/google/daisy/mainboard.c index cf25967851..5840e51049 100644 --- a/src/mainboard/google/daisy/mainboard.c +++ b/src/mainboard/google/daisy/mainboard.c @@ -348,8 +348,8 @@ static void mainboard_enable(device_t dev) } struct chip_operations mainboard_ops = { - .name = "Samsung/Google ARM Chromebook", - .enable_dev = mainboard_enable, + .name = "daisy", + .enable_dev = mainboard_enable, }; void lb_board(struct lb_header *header) |