1#include <dev/pcie_bus_driver.h>
2
3// This is a default empty table for pcie quirks on platforms that do not have
4// any quirks to worry about. A const within the same translation unit as the
5// extern definition results in the local initialized value being used, so to
6// work around that the table lives here in a separate file.
7extern __WEAK const PcieBusDriver::QuirkHandler pcie_quirk_handlers[] = {
8    nullptr,
9};
10
11