From 98ea6a3f94adc9d33c52283683b423e2ced8af61 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Sun, 25 Oct 2020 21:13:36 +0100 Subject: soc/intel/broadwell/pch/acpi/hda.asl: Rename to `audio.asl` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is merely to ease diffing Lynx Point and Broadwell ASL code. Tested with BUILD_TIMELESS=1, Google Buddy does not change. Change-Id: I9f6ab98388d2a2915a48377ebe9e724cfee4b95f Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/46779 Reviewed-by: Michael Niewöhner Tested-by: build bot (Jenkins) --- src/soc/intel/broadwell/pch/acpi/audio.asl | 11 +++++++++++ src/soc/intel/broadwell/pch/acpi/hda.asl | 11 ----------- src/soc/intel/broadwell/pch/acpi/pch.asl | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) create mode 100644 src/soc/intel/broadwell/pch/acpi/audio.asl delete mode 100644 src/soc/intel/broadwell/pch/acpi/hda.asl diff --git a/src/soc/intel/broadwell/pch/acpi/audio.asl b/src/soc/intel/broadwell/pch/acpi/audio.asl new file mode 100644 index 0000000000..a6f0d7b252 --- /dev/null +++ b/src/soc/intel/broadwell/pch/acpi/audio.asl @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +/* Intel PCH HDA */ + +// Intel High Definition Audio (Azalia) 0:1b.0 + +Device (HDEF) +{ + Name (_ADR, 0x001b0000) + Name (_PRW, Package () { 0x6d, 3 }) +} diff --git a/src/soc/intel/broadwell/pch/acpi/hda.asl b/src/soc/intel/broadwell/pch/acpi/hda.asl deleted file mode 100644 index a6f0d7b252..0000000000 --- a/src/soc/intel/broadwell/pch/acpi/hda.asl +++ /dev/null @@ -1,11 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ - -/* Intel PCH HDA */ - -// Intel High Definition Audio (Azalia) 0:1b.0 - -Device (HDEF) -{ - Name (_ADR, 0x001b0000) - Name (_PRW, Package () { 0x6d, 3 }) -} diff --git a/src/soc/intel/broadwell/pch/acpi/pch.asl b/src/soc/intel/broadwell/pch/acpi/pch.asl index d68fa60bbf..b7d6838f51 100644 --- a/src/soc/intel/broadwell/pch/acpi/pch.asl +++ b/src/soc/intel/broadwell/pch/acpi/pch.asl @@ -39,7 +39,7 @@ Scope (\) } // High Definition Audio (Azalia) 0:1b.0 -#include "hda.asl" +#include "audio.asl" // ADSP/SST 0:13.0 #include "adsp.asl" -- cgit v1.2.3