[coreboot-gerrit] Patch set updated for coreboot: lenovo/t60: transition away from device_t

Antonello Dettori (dev@dettori.io) gerrit at coreboot.org
Sun Sep 4 10:17:02 CEST 2016


Antonello Dettori (dev at dettori.io) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16405

-gerrit

commit d676f96a4b0afa70b001d5dc1612009a50a0ff4c
Author: Antonello Dettori <dev at dettori.io>
Date:   Fri Sep 2 09:12:20 2016 +0200

    lenovo/t60: transition away from device_t
    
    Replace the use of the old device_t definition inside
    mainboard/lenovo/t60.
    
    The patch has been tested both with the arch/io.h definition of device_t
    enabled and disabled in order to ensure compatibility while the
    transaction takes place.
    
    Change-Id: I4d87498637d74f96ca5809b0e810755a58fc64ab
    Signed-off-by: Antonello Dettori <dev at dettori.io>
---
 src/mainboard/lenovo/t60/romstage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mainboard/lenovo/t60/romstage.c b/src/mainboard/lenovo/t60/romstage.c
index 3ed6afd..d3cd90c 100644
--- a/src/mainboard/lenovo/t60/romstage.c
+++ b/src/mainboard/lenovo/t60/romstage.c
@@ -95,7 +95,7 @@ static void ich7_enable_lpc(void)
 static void early_superio_config(void)
 {
 	int timeout = 100000;
-	device_t dev = PNP_DEV(0x2e, 3);
+	pnp_devfn_t dev = PNP_DEV(0x2e, 3);
 
 	pnp_write_config(dev, 0x29, 0xa0);
 



More information about the coreboot-gerrit mailing list