diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-02-24 10:40:57 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-01 11:54:53 +0000 |
commit | f6ea89d684e7eb15a192a3d7c4406d0d4fe655c3 (patch) | |
tree | 4df5f075e9b8c94f7c12df92ad5391f17bc9817f /src/ec/starlabs/merlin/acpi/hid.asl | |
parent | e1ff978c9a48df7e750634b055984922c6b1310c (diff) |
ec/starlabs/merlin: Add spaces to adhere to coding style
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I0e965513d5888398834cab8c8445e97372f2b115
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62332
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Andy Pont <andy.pont@sdcsystems.com>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Diffstat (limited to 'src/ec/starlabs/merlin/acpi/hid.asl')
-rw-r--r-- | src/ec/starlabs/merlin/acpi/hid.asl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ec/starlabs/merlin/acpi/hid.asl b/src/ec/starlabs/merlin/acpi/hid.asl index 5449807e0f..a9de7da559 100644 --- a/src/ec/starlabs/merlin/acpi/hid.asl +++ b/src/ec/starlabs/merlin/acpi/hid.asl @@ -26,7 +26,7 @@ Device (HIDD) // HID Device // Output: // Package containing a complete HID Descriptor information. // - Name(DPKG, Package(4) + Name (DPKG, Package(4) { 0x11111111, 0x22222222, @@ -35,7 +35,7 @@ Device (HIDD) // HID Device }) Method (HDDM, 0, Serialized) { - Return(DPKG) + Return (DPKG) } // // HID Driver Event Method - Called by HID Driver to get the specific @@ -54,9 +54,9 @@ Device (HIDD) // HID Device // Simple Mode is hardcoded for now. Return Simple Mode HID Index Value. If (HMDE == 0x00) { - Return(HIDX) + Return (HIDX) } - Return(HMDE) + Return (HMDE) } // // HID Driver Mode Method - Called by HID Driver during initialization to get @@ -71,7 +71,7 @@ Device (HIDD) // HID Device // Method (HDMM, 0, Serialized) { - Return(HMDE) // Return Mode of operation. + Return (HMDE) // Return Mode of operation. } // // HID Driver Status Method - called by HID Driver to report platform readiness status. @@ -196,7 +196,7 @@ Device (HIDD) // HID Device // Method (BTNC, 0, Serialized) // HID Button Capabilities Method { - Return(0x1F) + Return (0x1F) } // @@ -253,7 +253,7 @@ Device (HIDD) // HID Device // Method (HEEC, 0, Serialized) { // It's possible to return (\HEB2) - Return(0x00) + Return (0x00) } // // HIDD _DSM |