aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi
diff options
context:
space:
mode:
authorPrince Agyeman <prince.agyeman@intel.com>2015-08-05 20:17:38 -0700
committerPatrick Georgi <pgeorgi@google.com>2015-08-29 07:10:19 +0000
commit4aab85be3f1475926cabd93c75b002cc73e9ba64 (patch)
treef328657398144d7f88482e0f0a558b49a44c4bdb /src/soc/intel/braswell/acpi
parent1244c2c961de413a8c73914f9801dcec7e31b09d (diff)
intel/braswell: Adding conditional statements to turn on/off DPTF WIFI and WWAN
TEST=Builds and boot on Cyan verified by DPTF team BUG=None BRANCH=None Change-Id: I38ddf4a104eb3183d424b5df6b5eab9d406327ef Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Original-Commit-Id: 47cbf3893f7d5f1dfad73f57a71ade9382b0a06a Original-Change-Id: Ide4b3987bfa5e7ec60ee4f47d0663bb71f8330b9 Original-Signed-off-by: Prince Agyeman <prince.agyeman@intel.com> Original-Reviewed-on: https://chromium-review.googlesource.com/291063 Original-Commit-Queue: Prince Agyeman <popagy@gmail.com> Original-Tested-by: Prince Agyeman <popagy@gmail.com> Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/11411 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/braswell/acpi')
-rw-r--r--src/soc/intel/braswell/acpi/dptf/dptf.asl8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/soc/intel/braswell/acpi/dptf/dptf.asl b/src/soc/intel/braswell/acpi/dptf/dptf.asl
index f8d8347ac8..686a719eea 100644
--- a/src/soc/intel/braswell/acpi/dptf/dptf.asl
+++ b/src/soc/intel/braswell/acpi/dptf/dptf.asl
@@ -1,4 +1,3 @@
-
Device (DPTF)
{
Name (_HID, EISAID ("INT3400"))
@@ -75,7 +74,12 @@ Device (DPTF)
#include "charger.asl"
#endif
- /* Include Network Participants */
+ /* Include Network Participants */
+#ifdef DPTF_ENABLE_WIFI
#include "wifi.asl"
+#endif
+
+#ifdef DPTF_ENABLE_WWAN
#include "wwan.asl"
+#endif
}