We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43044d1 commit c548f0dCopy full SHA for c548f0d
src/vmaware.hpp
@@ -5663,7 +5663,6 @@ struct VM {
5663
#pragma pack(pop)
5664
5665
constexpr DWORD ACPI_SIG = 'ACPI';
5666
- constexpr DWORD dsdtSig = 'TDSD';
5667
constexpr DWORD HPET_SIG = 'TEPH';
5668
5669
// "WAET" is also present as a string inside the WAET table, so there's no need to check for its table signature
@@ -8059,9 +8058,9 @@ struct VM {
8059
8058
return false;
8060
}
8061
8062
- debug("TPM: Manufacturer -> 0x", std::hex, manufacturerVal);
+ debug("TPM: Manufacturer -> 0x", std::hex, tpm);
8063
8064
- switch (manufacturerVal) {
+ switch (tpm) {
8065
case 0x414D4400u: // "AMD\0"
8066
case 0x41544D4Cu: // "ATML"
8067
case 0x4252434Du: // "BRCM"
0 commit comments