diff options
Diffstat (limited to 'source/components/utilities')
| -rw-r--r-- | source/components/utilities/utobject.c | 2 | ||||
| -rw-r--r-- | source/components/utilities/utosi.c | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/source/components/utilities/utobject.c b/source/components/utilities/utobject.c index 30b2fd99c92f..3278f0578c13 100644 --- a/source/components/utilities/utobject.c +++ b/source/components/utilities/utobject.c @@ -305,7 +305,7 @@ AcpiUtCreatePackageObject ( ((ACPI_SIZE) Count + 1) * sizeof (void *)); if (!PackageElements) { - ACPI_FREE (PackageDesc); + AcpiUtDeleteObjectDesc (PackageDesc); return_PTR (NULL); } diff --git a/source/components/utilities/utosi.c b/source/components/utilities/utosi.c index 8edd783ccf23..6e034eb35816 100644 --- a/source/components/utilities/utosi.c +++ b/source/components/utilities/utosi.c @@ -239,7 +239,11 @@ static ACPI_INTERFACE_INFO AcpiDefaultSupportedInterfaces[] = {"Processor Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0}, {"3.0 Thermal Model", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0}, {"3.0 _SCP Extensions", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0}, - {"Processor Aggregator Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0} + {"Processor Aggregator Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0}, + + /* See https://learn.microsoft.com/en-us/windows-hardware/drivers/display/automatic-display-switch */ + + {"DisplayMux", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0} }; |
