Felix Held has uploaded this change for review. ( 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 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 --- M src/include/device/device.h 1 file changed, 0 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/77072/1
diff --git a/src/include/device/device.h b/src/include/device/device.h index f86a52d..43edabf 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -88,11 +88,8 @@ 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 */ };