Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77072?usp=email )
Change subject: include/device/device: drop unused fields from struct bus ......................................................................
include/device/device: drop unused fields from struct bus
Neither cap, hcdn_reg, disable_relaxed_ordering nor ht_link_up are used, so drop the fields from struct bus.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I655b028107da7ddcb5caa03dab55b022387e7cb9 Reviewed-on: https://review.coreboot.org/c/coreboot/+/77072 Reviewed-by: Eric Lai eric_lai@quanta.corp-partner.google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/include/device/device.h 1 file changed, 0 insertions(+), 4 deletions(-)
Approvals: Eric Lai: Looks good to me, approved build bot (Jenkins): Verified Kyösti Mälkki: Looks good to me, approved
diff --git a/src/include/device/device.h b/src/include/device/device.h index f86a52d..f128070 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -87,12 +87,8 @@ uint16_t secondary; /* secondary bus number */ uint16_t subordinate; /* subordinate bus number */ uint16_t max_subordinate; /* max subordinate bus number */ - unsigned char cap; /* PCi capability offset */ - uint32_t hcdn_reg; /* For HyperTransport link */
unsigned int reset_needed : 1; - unsigned int disable_relaxed_ordering : 1; - unsigned int ht_link_up : 1; unsigned int no_vga16 : 1; /* No support for 16-bit VGA decoding */ };