diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-02-17 17:42:51 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2023-02-19 11:20:37 +0000 |
commit | 1548032c98f66800a5a822017b3078891552f8f5 (patch) | |
tree | dbf3ade0aecf2cf4a4b7d63300083a28cd5484d9 /src/mainboard/intel | |
parent | 05d6f5a488380c1c7bf98f91700c17d59f466cc0 (diff) |
treewide: Remove useless "_STA: Status" comment
Change-Id: I99ded00fa6dadb494c1523d00063dbc1fde95614
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73093
Reviewed-by: Tim Crawford <tcrawford@system76.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/intel')
-rw-r--r-- | src/mainboard/intel/glkrvp/touchpanel.asl | 2 | ||||
-rw-r--r-- | src/mainboard/intel/kblrvp/acpi/mipi_camera.asl | 10 | ||||
-rw-r--r-- | src/mainboard/intel/tglrvp/acpi/mipi_camera.asl | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/src/mainboard/intel/glkrvp/touchpanel.asl b/src/mainboard/intel/glkrvp/touchpanel.asl index acbfb20cb6..c2285a4b73 100644 --- a/src/mainboard/intel/glkrvp/touchpanel.asl +++ b/src/mainboard/intel/glkrvp/touchpanel.asl @@ -46,7 +46,7 @@ Scope(\_SB.PCI0.I2C7) { { } - Method (_STA, 0, NotSerialized) // _STA: Status + Method (_STA, 0, NotSerialized) { Return (0x0F) } diff --git a/src/mainboard/intel/kblrvp/acpi/mipi_camera.asl b/src/mainboard/intel/kblrvp/acpi/mipi_camera.asl index bbdaad68b7..547571f7a4 100644 --- a/src/mainboard/intel/kblrvp/acpi/mipi_camera.asl +++ b/src/mainboard/intel/kblrvp/acpi/mipi_camera.asl @@ -9,7 +9,7 @@ Scope (\_SB.PCI0.I2C2) Name (_DDN, "TPS68470 PMIC") /* _DDN: DOS Device Name */ Name (CAMD, 0x64) - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } @@ -374,7 +374,7 @@ Scope (\_SB.PCI0.I2C2) Name (_DDN, "OV 13858 Camera") /* _DDN: DOS Device Name */ Name (CAMD, 0x02) - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } @@ -479,7 +479,7 @@ Scope (\_SB.PCI0.I2C2) Name (_DDN, "Dongwoon AF DAC") /* _DDN: DOS Device Name */ Name (CAMD, 0x03) - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } @@ -507,7 +507,7 @@ Scope (\_SB.PCI0.I2C3) Name (_DDN, "TPS68470 PMIC 2") /* _DDN: DOS Device Name */ Name (CAMD, 0x64) - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } @@ -810,7 +810,7 @@ Scope (\_SB.PCI0.I2C3) Name (_DDN, "OV 5670 Camera") /* _DDN: DOS Device Name */ Name (CAMD, 0x02) - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } diff --git a/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl b/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl index d4f203122a..1b2014fde6 100644 --- a/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl +++ b/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl @@ -190,7 +190,7 @@ Scope (\_SB.PCI0.I2C3) STA = 0 } } - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (STA) } @@ -201,7 +201,7 @@ Scope (\_SB.PCI0.I2C3) Name (_HID, "OVTI8856") Name (_UID, 0) Name (_DDN, "Ov 8856 Camera") /* _DDN: DOS Device Name */ - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } @@ -324,7 +324,7 @@ Scope (\_SB.PCI0.I2C3) Name (_HID, "PRP0001") Name (_UID, 0x03) Name (_DDN, "DW9714 VCM") /* _DDN: DOS Device Name */ - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } @@ -413,7 +413,7 @@ Scope (\_SB.PCI0.I2C5) STA = 0 } } - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (STA) } @@ -424,7 +424,7 @@ Scope (\_SB.PCI0.I2C5) Name (_HID, "OVTI8856") Name (_UID, 0) Name (_DDN, "Ov 8856 Camera") /* _DDN: DOS Device Name */ - Method (_STA, 0, NotSerialized) /* _STA: Status */ + Method (_STA, 0, NotSerialized) { Return (0x0F) } |