diff options
author | Felix Singer <felix.singer@secunet.com> | 2021-07-26 19:21:42 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-07-28 13:49:50 +0000 |
commit | afa6c41a80cc19209b418ea1118e2bb7dd5da032 (patch) | |
tree | 8f0276fe70880c44d3688a4dec8f83aee5a35c5d /src/ec/roda/it8518/acpi/ec.asl | |
parent | ee00ad35134fe26815e9413b4e9af8261d430eb8 (diff) |
ec/roda/it8518/acpi: Use lower-case hex format
Built roda/rw11 with `BUILD_TIMELESS=1` and coreboot.rom remains the
same.
Change-Id: I9f08b048d41ab7a5d7d7dc735779ea019517491a
Signed-off-by: Felix Singer <felix.singer@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56608
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/roda/it8518/acpi/ec.asl')
-rw-r--r-- | src/ec/roda/it8518/acpi/ec.asl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ec/roda/it8518/acpi/ec.asl b/src/ec/roda/it8518/acpi/ec.asl index 8b89075583..3b9a38ded1 100644 --- a/src/ec/roda/it8518/acpi/ec.asl +++ b/src/ec/roda/it8518/acpi/ec.asl @@ -11,7 +11,7 @@ Device (EC0) Name (LIDS, 1) // EC RAM fields - OperationRegion(ERAM, EmbeddedControl, 0, 0xFF) + OperationRegion(ERAM, EmbeddedControl, 0, 0xff) Field (ERAM, ByteAcc, NoLock, Preserve) { Offset(0x02), // [Configuration Space 0x2] @@ -31,13 +31,13 @@ Device (EC0) Offset (0x50), // [Configuration Space 0x50] LUXH, 8, // Ambient Light Illuminance High LUXL, 8, // Ambient Light Illuminance Low - Offset (0x5B), // [Configuration Space 0x5B] + Offset (0x5b), // [Configuration Space 0x5b] BRIG, 8, // Brightness } // End of ERAM Method (_STA, 0, NotSerialized) // _STA: Status { - Return (0x0F) + Return (0x0f) } Method (_CRS, 0, NotSerialized) @@ -134,8 +134,8 @@ Device (EC0) Local0 = BRIG Local0 += 1 - If (Local0 > 0xAA) { - Local0 = 0xAA + If (Local0 > 0xaa) { + Local0 = 0xaa } BRIG = Local0 @@ -150,9 +150,9 @@ Device (EC0) Local0 = BRIG Local0 -= 1 - If (Local0 < 0xA0) + If (Local0 < 0xa0) { - Local0 = 0xA0 + Local0 = 0xa0 } BRIG = Local0 |