device/device.c: Print bus numbers in decimal
For consistency with other log messages, print bus numbers in decimal. Change-Id: Ib08ae40fc67c5f8fafd760e8dbb729d6de34c2bb Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54015 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
eb73e5f4a4
commit
e354a4b70d
|
@ -148,7 +148,7 @@ static void read_resources(struct bus *bus)
|
|||
{
|
||||
struct device *curdev;
|
||||
|
||||
printk(BIOS_SPEW, "%s %s bus %x link: %d\n", dev_path(bus->dev),
|
||||
printk(BIOS_SPEW, "%s %s bus %d link: %d\n", dev_path(bus->dev),
|
||||
__func__, bus->secondary, bus->link_num);
|
||||
|
||||
/* Walk through all devices and find which resources they need. */
|
||||
|
|
Loading…
Reference in New Issue