1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #include <amdblocks/amd_pci_util.h> 4 #include <console/console.h> 5 #include <types.h> 6 get_pci_routing_table(size_t * entries)7const struct pci_routing_info *get_pci_routing_table(size_t *entries) 8 { 9 /* TODO: still needs to be implemented for the non-FSP case */ 10 printk(BIOS_NOTICE, "%s stub: returning empty IRQ routing table\n", __func__); 11 12 *entries = 0; 13 return NULL; 14 } 15