diff options
author | Tom Rini <trini@konsulko.com> | 2021-10-03 19:31:04 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-03 19:31:04 -0400 |
commit | e17cbdd050f7127737988997f4a01583b34f7c96 (patch) | |
tree | 6c7cd744ac55da0f0a782a40b6c165b405bcd7e8 /cmd/pci.c | |
parent | 67e6c540a098ee5ecb3fdf0b332d9a63b00fdbd7 (diff) | |
parent | 26fa063c6e6c12ff111c9ccadd41b84e3f66ad1d (diff) |
Merge branch '2021-10-03-platform-updates' into next
- TI K3 updates, add IOT2050 platform
- rtc rx8025 updates, PCI fixes
Diffstat (limited to 'cmd/pci.c')
-rw-r--r-- | cmd/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -59,7 +59,7 @@ static void pci_show_regs(struct udevice *dev, struct pci_reg_info *regs) } } -int pci_bar_show(struct udevice *dev) +static int pci_bar_show(struct udevice *dev) { u8 header_type; int bar_cnt, bar_id, mem_type; @@ -223,7 +223,7 @@ static struct pci_reg_info regs_cardbus[] = { * * @dev: Bus+Device+Function number */ -void pci_header_show(struct udevice *dev) +static void pci_header_show(struct udevice *dev) { unsigned long class, header_type; @@ -251,7 +251,7 @@ void pci_header_show(struct udevice *dev) } } -void pciinfo_header(int busnum, bool short_listing) +static void pciinfo_header(int busnum, bool short_listing) { printf("Scanning PCI devices on bus %d\n", busnum); |