blob: 5c891c2644f53cf1b33de9ca849af847dc168491 [file] [log] [blame]
Felix Heldcbbb09b2024-02-01 20:13:09 +01001/* 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
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}