diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-02-08 00:10:44 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-09 19:58:14 +0100 |
commit | b27c24f69b89aca3203d56522663a546811cbfb8 (patch) | |
tree | 28b00d7f9dc5e533b21efacdaa9a43ebabb30573 /src/ec/quanta/it8518 | |
parent | bb7dbcdf30ee9697dda0ae45025b4ea183b7a748 (diff) |
Workaround for unused variable warning.
Change-Id: I0a0c925509027f98f724d0a4347146f21ac06c02
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13624
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/ec/quanta/it8518')
-rw-r--r-- | src/ec/quanta/it8518/acpi/ec.asl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ec/quanta/it8518/acpi/ec.asl b/src/ec/quanta/it8518/acpi/ec.asl index 0045196b71..22c7352652 100644 --- a/src/ec/quanta/it8518/acpi/ec.asl +++ b/src/ec/quanta/it8518/acpi/ec.asl @@ -568,6 +568,9 @@ Device (EC0) // Force a read of CPU temperature // TODO Which temperature corresponds to the CPU? Store (TMP0, Local0) + /* So that we don't get a warning that Local0 is unused. */ + Increment (Local0) + } /* Attention Codes |