mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 20:35:06 +00:00

This commit adds all necessary includes, so all functions are properly declared. PCI.cpp is moved to PCI/Initializer.cpp, as that matches the header path.
20 lines
362 B
C++
20 lines
362 B
C++
/*
|
|
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Bus/PCI/Initializer.h>
|
|
#include <Kernel/Library/Assertions.h>
|
|
|
|
namespace Kernel::PCI {
|
|
|
|
bool g_pci_access_io_probe_failed { false };
|
|
bool g_pci_access_is_disabled_from_commandline { true };
|
|
|
|
void initialize()
|
|
{
|
|
TODO_RISCV64();
|
|
}
|
|
|
|
}
|