soc/intel/broadwell: Fix use of CONFIG_USBDEBUG

Change-Id: I52c852fb449de5a6512aa2556592e6dfe7b0c573
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31992
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
diff --git a/src/soc/intel/broadwell/ehci.c b/src/soc/intel/broadwell/ehci.c
index f29c426..a03fd54 100644
--- a/src/soc/intel/broadwell/ehci.c
+++ b/src/soc/intel/broadwell/ehci.c
@@ -41,7 +41,7 @@
 
 static void ehci_enable(struct device *dev)
 {
-	if (CONFIG_USBDEBUG)
+	if (CONFIG(USBDEBUG))
 		dev->enabled = 1;
 	else
 		pch_disable_devfn(dev);
diff --git a/src/soc/intel/broadwell/pei_data.c b/src/soc/intel/broadwell/pei_data.c
index dfaf025..d8059ec 100644
--- a/src/soc/intel/broadwell/pei_data.c
+++ b/src/soc/intel/broadwell/pei_data.c
@@ -30,7 +30,7 @@
 {
 	pei_data->pei_version = PEI_VERSION;
 	pei_data->board_type = BOARD_TYPE_ULT;
-	pei_data->usbdebug = CONFIG_USBDEBUG;
+	pei_data->usbdebug = CONFIG(USBDEBUG);
 	pei_data->pciexbar = MCFG_BASE_ADDRESS;
 	pei_data->smbusbar = SMBUS_BASE_ADDRESS;
 	pei_data->ehcibar = EARLY_EHCI_BAR;