summaryrefslogtreecommitdiff
path: root/src/mainboard/google/zork/variants/dalboz/variant.c
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2020-09-03 14:30:33 -0600
committerPatrick Georgi <pgeorgi@google.com>2020-09-14 07:09:23 +0000
commit7c79d8302b7361a11a204131d5661d768feb82ac (patch)
tree8d233bf36810d7ea8af038e3b8317bb7dbff6e3e /src/mainboard/google/zork/variants/dalboz/variant.c
parent73cd3e704fde61e287f6fbdd6d371ed19e41f15d (diff)
downloadcoreboot-7c79d8302b7361a11a204131d5661d768feb82ac.tar.xz
soc/amd/picasso: Move sd_emmc_config into emmc_config struct
I plan on adding another eMMC parameter. This refactor keeps the config contained in a single struct. BUG=b:159823235 TEST=Build test Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I4b57d651ab44d6c1cad661d620bffd4207dfebd4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/45095 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/google/zork/variants/dalboz/variant.c')
-rw-r--r--src/mainboard/google/zork/variants/dalboz/variant.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/zork/variants/dalboz/variant.c b/src/mainboard/google/zork/variants/dalboz/variant.c
index 5138782e5c..21aaec829a 100644
--- a/src/mainboard/google/zork/variants/dalboz/variant.c
+++ b/src/mainboard/google/zork/variants/dalboz/variant.c
@@ -134,10 +134,10 @@ void variant_devtree_update(void)
* So we keep the speed low here, with the intent that
* other variants implement these corrections.
*/
- cfg->sd_emmc_config = SD_EMMC_EMMC_HS200;
+ cfg->emmc_config.timing = SD_EMMC_EMMC_HS200;
}
} else {
- cfg->sd_emmc_config = SD_EMMC_DISABLE;
+ cfg->emmc_config.timing = SD_EMMC_DISABLE;
}
update_audio_configuration();