diff options
author | Wim Vervoorn <wvervoorn@eltan.com> | 2020-01-15 09:16:46 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-01-18 10:52:12 +0000 |
commit | 8629b49606bcbec237ae68bf1aa79aa0e183209a (patch) | |
tree | 5d0c7a15522e66375ca9f77e3d91530c0f1d39db /src/ec/google/chromeec | |
parent | 0826e35a358de83ec75fd48f23bfd17b0ced9b7b (diff) | |
download | coreboot-8629b49606bcbec237ae68bf1aa79aa0e183209a.tar.xz |
soc/intel/{skylake,common}/acpi/dptf/thermal.asl: Prevent iasl remarks
Prevent iasl remarks about unused parameters.
BUG=N/A
TEST=build
Change-Id: I54fa4712e618038fdd5a96c2012c2ec64ca34706
Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38428
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Diffstat (limited to 'src/ec/google/chromeec')
-rw-r--r-- | src/ec/google/chromeec/acpi/ec.asl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ec/google/chromeec/acpi/ec.asl b/src/ec/google/chromeec/acpi/ec.asl index 962988e7a9..bf792d3629 100644 --- a/src/ec/google/chromeec/acpi/ec.asl +++ b/src/ec/google/chromeec/acpi/ec.asl @@ -510,6 +510,7 @@ Device (EC0) Return (^TBMD) } +#ifdef EC_ENABLE_MULTIPLE_DPTF_PROFILES /* Read current Device DPTF Profile Number */ Method (RCDP, 0, NotSerialized) { @@ -524,7 +525,7 @@ Device (EC0) Return (Local0) } } - +#endif #if CONFIG(EC_GOOGLE_CHROMEEC_ACPI_USB_PORT_POWER) /* * Enable USB Port Power |