diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-01-20 19:37:26 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-01-22 00:38:03 +0000 |
commit | 831d686e6bbf89ff2c28ae3c8679c186590f3814 (patch) | |
tree | d7548c0fe78afbb8c6732c262d8b8ae83e58f60c /src | |
parent | decbf7b4d975999bf7febf7d4330da4abfba0ace (diff) |
ec/google/chromeec/acpi/ec: add scope comment to nested #endif
To make the code slightly easier to read, add a comment about the scope
to the #endif of the outer #ifdef block.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic2bc83c77750cd8a509f4755fdfa4daaf082d754
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72137
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Caveh Jalali <caveh@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/ec/google/chromeec/acpi/ec.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/google/chromeec/acpi/ec.asl b/src/ec/google/chromeec/acpi/ec.asl index 2d44ae3c1b..9ff7b72194 100644 --- a/src/ec/google/chromeec/acpi/ec.asl +++ b/src/ec/google/chromeec/acpi/ec.asl @@ -128,7 +128,7 @@ Device (EC0) Name (_PRW, Package () { EC_ENABLE_WAKE_PIN, 0x5 }) #endif } -#endif +#endif /* EC_ENABLE_LID_SWITCH */ Method (TINS, 1, Serialized) { |