diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-06-23 18:59:46 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-17 20:23:52 +0000 |
commit | a3adb75b528b2e5cee1bfca84bff13f3ebe7142d (patch) | |
tree | ba25edb376a1e6574f53368fb34b5dc1e6bb54a9 /src/mainboard/intel | |
parent | 20cc942d9ebfb52719215d5e0b66270fc705e518 (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/intel')
-rw-r--r-- | src/mainboard/intel/wtm2/pei_data.c | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/src/mainboard/intel/wtm2/pei_data.c b/src/mainboard/intel/wtm2/pei_data.c index 9df5081f23..bcb877dd64 100644 --- a/src/mainboard/intel/wtm2/pei_data.c +++ b/src/mainboard/intel/wtm2/pei_data.c @@ -15,22 +15,14 @@ void mainboard_fill_spd_data(struct pei_data *pei_data) void mainboard_fill_pei_data(struct pei_data *pei_data) { - pei_data_usb2_port(pei_data, 0, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 1, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 2, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 3, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 4, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 5, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 6, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); - pei_data_usb2_port(pei_data, 7, 0x40, 1, USB_OC_PIN_SKIP, - USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 0, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 1, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 2, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 3, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 4, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 5, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 6, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); + pei_data_usb2_port(pei_data, 7, 0x40, 1, USB_OC_PIN_SKIP, USB_PORT_FRONT_PANEL); pei_data_usb3_port(pei_data, 0, 1, USB_OC_PIN_SKIP, 0); pei_data_usb3_port(pei_data, 1, 1, USB_OC_PIN_SKIP, 0); |