Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/77073?usp=email )
Change subject: include/device/device: align comments in struct bus ......................................................................
include/device/device: align comments in struct bus
Also change PCi to PCI in one of the comments.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I20fe63e93121b3b791e6d475e948b6ada648293b --- M src/include/device/device.h 1 file changed, 7 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/73/77073/1
diff --git a/src/include/device/device.h b/src/include/device/device.h index 43edabf..bf76ed2 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -80,17 +80,17 @@ struct bus { DEVTREE_CONST struct device *dev; /* This bridge device */ DEVTREE_CONST struct device *children; /* devices behind this bridge */ - DEVTREE_CONST struct bus *next; /* The next bridge on this device */ - unsigned int bridge_ctrl; /* Bridge control register */ + DEVTREE_CONST struct bus *next; /* The next bridge on this device */ + unsigned int bridge_ctrl; /* Bridge control register */ uint16_t bridge_cmd; /* Bridge command register */ - unsigned char link_num; /* The index of this link */ - uint16_t secondary; /* secondary bus number */ - uint16_t subordinate; /* subordinate bus number */ + unsigned char link_num; /* The index of this link */ + 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 */ + unsigned char cap; /* PCI capability offset */
unsigned int reset_needed : 1; - unsigned int no_vga16 : 1; /* No support for 16-bit VGA decoding */ + unsigned int no_vga16 : 1; /* No support for 16-bit VGA decoding */ };
/*