diff options
author | Felix Singer <felix.singer@secunet.com> | 2021-08-24 15:23:46 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-08-25 20:52:51 +0000 |
commit | 2b59fa7a8e9af265489acf226650d7deb77776c9 (patch) | |
tree | 8d2a2b14bda99ee9dfa388d1bb6fc22156c8c872 /src/mainboard | |
parent | ed52488b59dcde0102930b27b2855cfc7e5d816e (diff) |
mb/roda/rv11/acpi: Use lower case format for hex values
Change-Id: I3bea9e1f9cc25a4476ddbaa8bd8e434609eb28f7
Signed-off-by: Felix Singer <felix.singer@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57122
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/roda/rv11/acpi/alsd.asl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/roda/rv11/acpi/alsd.asl b/src/mainboard/roda/rv11/acpi/alsd.asl index 30c03a8c49..452bddc029 100644 --- a/src/mainboard/roda/rv11/acpi/alsd.asl +++ b/src/mainboard/roda/rv11/acpi/alsd.asl @@ -5,7 +5,7 @@ Device (ALSD) Name (_HID, "ACPI0008") // _HID: Hardware ID Method (_STA, 0, NotSerialized) // _STA: Status { - Return (0x0F) + Return (0x0f) } Method (_ALI, 0, NotSerialized) // _ALI: Ambient Light Illuminance @@ -28,7 +28,7 @@ Device (ALSD) Package (0x02) { 0x49, - 0x0A + 0x0a }, Package (0x02) @@ -40,13 +40,13 @@ Device (ALSD) Package (0x02) { 0x64, - 0x012C + 0x012c }, Package (0x02) { 0x96, - 0x03E8 + 0x03e8 } }) } |