mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
24 lines
345 B
C++
24 lines
345 B
C++
/*
|
|
* Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
enum class PCIVendorID {
|
|
VirtIO = 0x1af4,
|
|
Intel = 0x8086,
|
|
WCH = 0x1c00,
|
|
RedHat = 0x1b36
|
|
};
|
|
|
|
enum class PCIDeviceID {
|
|
VirtIOConsole = 0x1003,
|
|
VirtIOEntropy = 0x1005,
|
|
};
|
|
|
|
}
|