mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
c65a6b6b22
Adjust the nested namespace formatting in PCI files to use the nicer and more consistent C++17 style.
17 lines
266 B
C++
17 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();
|
|
|
|
}
|