mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
pci: sh: Add pci_skip_dev and pci_print_dev function
Add function of new PCI, pci_skip_dev and pci_print_dev. Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
348753d416
commit
d85f46a25c
1 changed files with 12 additions and 0 deletions
|
@ -74,3 +74,15 @@ int pci_sh4_init(struct pci_controller *hose)
|
|||
hose->last_busno = pci_hose_scan(hose);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PCI_SCAN_SHOW
|
||||
int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
#endif /* CONFIG_PCI_SCAN_SHOW */
|
||||
|
|
Loading…
Reference in a new issue