summaryrefslogtreecommitdiff
path: root/src/mainboard/google/jecht/variants/guado
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-06-23 18:59:46 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-17 20:23:52 +0000
commita3adb75b528b2e5cee1bfca84bff13f3ebe7142d (patch)
treeba25edb376a1e6574f53368fb34b5dc1e6bb54a9 /src/mainboard/google/jecht/variants/guado
parent20cc942d9ebfb52719215d5e0b66270fc705e518 (diff)
broadwell boards: Reflow USB2 parameter statements
These statements fit on a single line. Reflow them to ease future works. Change-Id: Ie18e9a00f67b999fdcedcab3c28b68e34bc93da4 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55814 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/google/jecht/variants/guado')
-rw-r--r--src/mainboard/google/jecht/variants/guado/pei_data.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/src/mainboard/google/jecht/variants/guado/pei_data.c b/src/mainboard/google/jecht/variants/guado/pei_data.c
index 63fd7babbb..3a00414d01 100644
--- a/src/mainboard/google/jecht/variants/guado/pei_data.c
+++ b/src/mainboard/google/jecht/variants/guado/pei_data.c
@@ -8,29 +8,21 @@ void mainboard_fill_pei_data(struct pei_data *pei_data)
pei_data->ec_present = 0;
/* P0: VP8 */
- pei_data_usb2_port(pei_data, 0, 0x0064, 1, 0,
- USB_PORT_MINI_PCIE);
+ pei_data_usb2_port(pei_data, 0, 0x0064, 1, 0, USB_PORT_MINI_PCIE);
/* P1: Port A, CN22 */
- pei_data_usb2_port(pei_data, 1, 0x0040, 1, 0,
- USB_PORT_INTERNAL);
+ pei_data_usb2_port(pei_data, 1, 0x0040, 1, 0, USB_PORT_INTERNAL);
/* P2: Port B, CN23 */
- pei_data_usb2_port(pei_data, 2, 0x0040, 1, 1,
- USB_PORT_INTERNAL);
+ pei_data_usb2_port(pei_data, 2, 0x0040, 1, 1, USB_PORT_INTERNAL);
/* P3: WLAN */
- pei_data_usb2_port(pei_data, 3, 0x0040, 1, USB_OC_PIN_SKIP,
- USB_PORT_MINI_PCIE);
+ pei_data_usb2_port(pei_data, 3, 0x0040, 1, USB_OC_PIN_SKIP, USB_PORT_MINI_PCIE);
/* P4: Port C, CN25 */
- pei_data_usb2_port(pei_data, 4, 0x0040, 1, 2,
- USB_PORT_INTERNAL);
+ pei_data_usb2_port(pei_data, 4, 0x0040, 1, 2, USB_PORT_INTERNAL);
/* P5: Port D, CN25 */
- pei_data_usb2_port(pei_data, 5, 0x0040, 1, 2,
- USB_PORT_INTERNAL);
+ pei_data_usb2_port(pei_data, 5, 0x0040, 1, 2, USB_PORT_INTERNAL);
/* P6: Card Reader */
- pei_data_usb2_port(pei_data, 6, 0x0040, 1, USB_OC_PIN_SKIP,
- USB_PORT_INTERNAL);
+ pei_data_usb2_port(pei_data, 6, 0x0040, 1, USB_OC_PIN_SKIP, USB_PORT_INTERNAL);
/* P7: EMPTY */
- pei_data_usb2_port(pei_data, 7, 0x0000, 0, 0,
- USB_PORT_SKIP);
+ pei_data_usb2_port(pei_data, 7, 0x0000, 0, 0, USB_PORT_SKIP);
/* P1: CN22 */
pei_data_usb3_port(pei_data, 0, 1, 0, 0);