[coreboot-gerrit] Patch set updated for coreboot: dcd153e Eliminate more ASL warnings

Oskar Enoksson (enok@lysator.liu.se) gerrit at coreboot.org
Mon Feb 10 22:25:40 CET 2014


Oskar Enoksson (enok at lysator.liu.se) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5190

-gerrit

commit dcd153e128261a52dbbe539ebd5dc0ea41ec7afd
Author: Oskar Enoksson <enok at lysator.liu.se>
Date:   Sat Feb 8 00:54:12 2014 +0100

    Eliminate more ASL warnings
    
    There were ASL compiler warnings about "Size mismatch". This commit
    eliminates the warnings by changing the ASL declarations of those
    fields.
    
    Change-Id: If851ed4892ef6c96acbff861abd7001ab67d9d66
    Signed-off-by: Oskar Enoksson <enok at lysator.liu.se>
---
 src/superio/winbond/w83627hf/acpi/superio.asl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl
index a8a184a..41f3588 100644
--- a/src/superio/winbond/w83627hf/acpi/superio.asl
+++ b/src/superio/winbond/w83627hf/acpi/superio.asl
@@ -712,7 +712,7 @@ Device(SIO) {
 				IRQNoFlags (IRQX) {}
 			})
 			CreateWordField (Arg0, IO0._MIN, IOA0)
-			CreateByteField (Arg0, IRQX._INT, IRQL)
+			CreateWordField (Arg0, IRQX._INT, IRQL)
 
 			Divide(IOA0, 256, Local0, Local1)
 
@@ -1153,7 +1153,7 @@ Device(SIO) {
 			})
 			CreateWordField (Arg0, IO0._MIN, IOA0)
 			CreateWordField (Arg0, IO1._MIN, IOA1)
-			CreateByteField (Arg0, IRQX._INT, IRQL)
+			CreateWordField (Arg0, IRQX._INT, IRQL)
 
 			Divide(IOA0, 256, Local0, Local1)
 			Divide(IOA1, 256, Local2, Local3)
@@ -1235,7 +1235,7 @@ Device(SIO) {
 			Name (TMPL, ResourceTemplate () {
 				IRQNoFlags (IRQX) {}
 			})
-			CreateByteField (Arg0, IRQX._INT, IRQL)
+			CreateWordField (Arg0, IRQX._INT, IRQL)
 
 			Subtract(FindSetLeftBit (IRQL), 1, Local0)
 



More information about the coreboot-gerrit mailing list