
Adjust the nested namespace formatting in PCI files to use the nicer and more consistent C++17 style.
16 lines
266 B
C++
16 lines
266 B
C++
/*
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel::PCI {
|
|
|
|
extern bool g_pci_access_io_probe_failed;
|
|
extern bool g_pci_access_is_disabled_from_commandline;
|
|
|
|
void initialize();
|
|
|
|
}
|