Anil Kumar K has uploaded this change for review.

View Change

[TEST] mb/intel/mtlrvp: Fix error in fw_config during soundwire pad config

Change-Id: Idad4b595cd2ecdc6e698c7c597d106b95d566a9d
---
M src/mainboard/intel/mtlrvp/fw_config.c
1 file changed, 2 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/69/81969/1
diff --git a/src/mainboard/intel/mtlrvp/fw_config.c b/src/mainboard/intel/mtlrvp/fw_config.c
index eac854c..dadbc30 100644
--- a/src/mainboard/intel/mtlrvp/fw_config.c
+++ b/src/mainboard/intel/mtlrvp/fw_config.c
@@ -89,12 +89,12 @@

if (fw_config_probe(FW_CONFIG(AUDIO, MTL_MAX98373_ALC5682_SNDW))) {
printk(BIOS_INFO, "Configure GPIOs for SoundWire audio (ext codec).\n");
- gpio_configure_pads(sndw_enable_pads, ARRAY_SIZE(i2s_enable_pads));
+ gpio_configure_pads(sndw_enable_pads, ARRAY_SIZE(sndw_enable_pads));
}

if (fw_config_probe(FW_CONFIG(AUDIO, MTL_ALC711_SNDW))) {
printk(BIOS_INFO, "Configure GPIOs for SoundWire audio (onboard codec).\n");
- gpio_configure_pads(sndw_alc711_enable_pads, ARRAY_SIZE(i2s_enable_pads));
+ gpio_configure_pads(sndw_alc711_enable_pads, ARRAY_SIZE(sndw_alc711_enable_pads));
}
}
BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, fw_config_handle, NULL);

To view, visit change 81969. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Idad4b595cd2ecdc6e698c7c597d106b95d566a9d
Gerrit-Change-Number: 81969
Gerrit-PatchSet: 1
Gerrit-Owner: Anil Kumar K <anil.kumar.k@intel.com>
Gerrit-MessageType: newchange