diff options
author | Antonello Dettori <dev@dettori.io> | 2016-09-03 10:45:33 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-09-13 17:17:31 +0200 |
commit | b0a60e5b212d7f98206a75f07edf0371d7cd9c1f (patch) | |
tree | 6ba7cb139f2494400f6439a7654ee2af6cc86d03 /src/northbridge | |
parent | 0501ece1811f8c8332a0981e4e8b147e2bc9b371 (diff) | |
download | coreboot-b0a60e5b212d7f98206a75f07edf0371d7cd9c1f.tar.xz |
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>
Reviewed-on: https://review.coreboot.org/16468
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/amd/amdht/ht_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdht/ht_wrapper.c b/src/northbridge/amd/amdht/ht_wrapper.c index 0dfc6abf64..169b4b3369 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); |