diff options
author | Keith Hui <buurin@gmail.com> | 2020-05-05 20:42:59 -0400 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-08 15:30:48 +0000 |
commit | 0cdc97cdd9a767bfe6e43ff4317796298976c457 (patch) | |
tree | dbc8e24310be1664cbd3650e70e030a630c54239 | |
parent | 71a131415e2063d0e8414782b263e04bb5dc818b (diff) | |
download | coreboot-0cdc97cdd9a767bfe6e43ff4317796298976c457.tar.xz |
sb/intel/i82371eb: Fix iasl warning
The backslash on the very last line is not needed and causes an iasl
warning.
Change-Id: I27e78bc34b9386dd014db5880a104693b4f0db5a
Signed-off-by: Keith Hui <buurin@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41094
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/southbridge/intel/i82371eb/acpi/intx.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82371eb/acpi/intx.asl b/src/southbridge/intel/i82371eb/acpi/intx.asl index c1dc508a96..fe2c180a26 100644 --- a/src/southbridge/intel/i82371eb/acpi/intx.asl +++ b/src/southbridge/intel/i82371eb/acpi/intx.asl @@ -45,4 +45,4 @@ Device(intx) { \ } \ Store(Local0, pinx) \ } \ -} \ +} |