Antonello Dettori (dev@dettori.io) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16468
-gerrit
commit 01d16611a1b617d12fb967702c633de73afee711 Author: Antonello Dettori dev@dettori.io Date: Sat Sep 3 10:45:33 2016 +0200
northbridge/amd/amdht: transition away from device_t
Replace the use of the old device_t definition inside northbridge/amd/amdht.
Change-Id: I7dfb8f001504c691aeddf1bfbc3be05cc7d31ce4 Signed-off-by: Antonello Dettori dev@dettori.io --- src/northbridge/amd/amdht/ht_wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/northbridge/amd/amdht/ht_wrapper.c b/src/northbridge/amd/amdht/ht_wrapper.c index f31fcd2..20ffdd4 100644 --- a/src/northbridge/amd/amdht/ht_wrapper.c +++ b/src/northbridge/amd/amdht/ht_wrapper.c @@ -69,7 +69,7 @@
static u32 get_nodes(void) { - device_t dev; + pci_devfn_t dev; u32 nodes;
dev = PCI_DEV(CONFIG_CBB, CONFIG_CDB, 0);