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