diff options
author | Liav A <liavalb@gmail.com> | 2022-03-18 16:46:55 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-06 18:04:57 +0200 |
commit | 340773ddb7058ddad59784fa946a5fd33612f6f9 (patch) | |
tree | f7780a2b30de0944ef39f22d80158fea8b0ac849 /Kernel/Bus | |
parent | 530aa51816e574601ab8366d1d52fbbdd427b35a (diff) | |
download | serenity-340773ddb7058ddad59784fa946a5fd33612f6f9.zip |
Kernel/Graphics: Implement basic support for VMWare SVGA adapter
Diffstat (limited to 'Kernel/Bus')
-rw-r--r-- | Kernel/Bus/PCI/IDs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/Bus/PCI/IDs.h b/Kernel/Bus/PCI/IDs.h index ddad4992e8..dc393baf91 100644 --- a/Kernel/Bus/PCI/IDs.h +++ b/Kernel/Bus/PCI/IDs.h @@ -15,7 +15,8 @@ enum VendorID { RedHat = 0x1b36, Realtek = 0x10ec, QEMUOld = 0x1234, - VirtualBox = 0x80ee + VirtualBox = 0x80ee, + VMWare = 0x15ad, }; enum DeviceID { |