summaryrefslogtreecommitdiff
path: root/util/autoport
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2020-01-22 11:48:55 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-01-28 18:38:06 +0000
commit71a7ca786e520eaa48f7a660da44d88d64cd2375 (patch)
tree5ccebadf8b133534d804f1cb684a17b4f6034808 /util/autoport
parent6b7d40a973c2cb61cfa683065db38601537b5dd5 (diff)
downloadcoreboot-71a7ca786e520eaa48f7a660da44d88d64cd2375.tar.gz
autoport: Don't add useless whitespace in comments
Change-Id: Ie6c94c0627743f9e965347ecfd28f1b0441178ad Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38516 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/autoport')
-rw-r--r--util/autoport/ec_lenovo.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/autoport/ec_lenovo.go b/util/autoport/ec_lenovo.go
index e847e76eb8..3113a33fbc 100644
--- a/util/autoport/ec_lenovo.go
+++ b/util/autoport/ec_lenovo.go
@@ -42,7 +42,7 @@ func LenovoEC(ctx Context) {
ap.WriteString(
`Method(_WAK, 1)
{
- /* ME may not be up yet. */
+ /* ME may not be up yet. */
Store(0, \_TZ.MEB1)
Store(0, \_TZ.MEB2)
Return(Package() {0, 0})
@@ -151,9 +151,9 @@ void mainboard_smi_sleep(u8 slp_typ)
{
if (slp_typ == 3) {
u8 ec_wake = ec_read(0x32);
- /* If EC wake events are enabled, enable wake on EC WAKE GPE. */
+ /* If EC wake events are enabled, enable wake on EC WAKE GPE. */
if (ec_wake & 0x14) {
- /* Redirect EC WAKE GPE to SCI. */
+ /* Redirect EC WAKE GPE to SCI. */
gpi_route_interrupt(GPE_EC_WAKE, GPI_IS_SCI);
}
}