diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-22 12:29:05 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-24 12:16:59 +0000 |
commit | 2526fd4a3dc5943dec13266e0ebd99932c853d71 (patch) | |
tree | b693b42135889a009ae39e89df6e73b186d70011 /src/ec | |
parent | ee8ce8d208a4e12c487e4ca84d856922483c0117 (diff) |
src: Remove space after `defined`
Change-Id: If450a68e98261ffba4afadbce47c156c7e89e7e4
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26460
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/lenovo/h8/acpi/thermal.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ec/lenovo/h8/acpi/thermal.asl b/src/ec/lenovo/h8/acpi/thermal.asl index aaced607a8..86fc31158c 100644 --- a/src/ec/lenovo/h8/acpi/thermal.asl +++ b/src/ec/lenovo/h8/acpi/thermal.asl @@ -15,7 +15,7 @@ Scope(\_TZ) { -#if defined (EC_LENOVO_H8_ME_WORKAROUND) +#if defined(EC_LENOVO_H8_ME_WORKAROUND) Name (MEB1, 0) Name (MEB2, 0) #endif @@ -85,7 +85,7 @@ External (\PPKG, MethodObj) } Method(_TMP) { -#if defined (EC_LENOVO_H8_ME_WORKAROUND) +#if defined(EC_LENOVO_H8_ME_WORKAROUND) /* Avoid tripping alarm if ME isn't booted at all yet */ If (LAnd (LNot (MEB1), LEqual (\_SB.PCI0.LPCB.EC.TMP0, 128))) { Return (C2K(40)) @@ -172,7 +172,7 @@ External (\PPKG, MethodObj) } Method(_TMP) { -#if defined (EC_LENOVO_H8_ME_WORKAROUND) +#if defined(EC_LENOVO_H8_ME_WORKAROUND) /* Avoid tripping alarm if ME isn't booted at all yet */ If (LAnd (LNot (MEB2), LEqual (\_SB.PCI0.LPCB.EC.TMP1, 128))) { Return (C2K(40)) |