[coreboot-gerrit] New patch to review for coreboot: northbridge/amd/agesa/family10: transition away from device_t

Antonello Dettori (dev@dettori.io) gerrit at coreboot.org
Tue Nov 8 20:00:40 CET 2016


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

-gerrit

commit 1d7310a8ef70d7a14ce81984fc2435c2458e25b8
Author: Antonello Dettori <dev at dettori.io>
Date:   Tue Nov 8 18:44:46 2016 +0100

    northbridge/amd/agesa/family10: transition away from device_t
    
    Replace the use of the old device_t definition inside
    northbridge/amd/agesa/family10.
    
    Change-Id: I5723e217fc739ab576cbe3a1ee6d92023190267c
    Signed-off-by: Antonello Dettori <dev at dettori.io>
---
 src/northbridge/amd/agesa/family10/reset_test.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/northbridge/amd/agesa/family10/reset_test.h b/src/northbridge/amd/agesa/family10/reset_test.h
index 88d389c..cb67de1 100644
--- a/src/northbridge/amd/agesa/family10/reset_test.h
+++ b/src/northbridge/amd/agesa/family10/reset_test.h
@@ -29,7 +29,7 @@
 static inline u32 warm_reset_detect(u8 nodeid)
 {
 	u32 htic;
-	device_t device;
+	pci_devfn_t device;
 	device = NODE_PCI(nodeid, 0);
 	htic = pci_io_read_config32(device, HT_INIT_CONTROL);
 	return (htic & HTIC_ColdR_Detect) && !(htic & HTIC_BIOSR_Detect);
@@ -38,7 +38,7 @@ static inline u32 warm_reset_detect(u8 nodeid)
 static inline void distinguish_cpu_resets(u8 nodeid)
 {
 	u32 htic;
-	device_t device;
+	pci_devfn_t device;
 	device = NODE_PCI(nodeid, 0);
 	htic = pci_io_read_config32(device, HT_INIT_CONTROL);
 	htic |= HTIC_ColdR_Detect | HTIC_BIOSR_Detect | HTIC_INIT_Detect;



More information about the coreboot-gerrit mailing list