southbridge/intel/fsp_rangeley: transition away from device_t

Replace the use of the old device_t definition inside
southbridge/intel/fsp_rangeley.

Change-Id: I6665f85c74eb3e37d78f6eecbec977dc21a5ad12
Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/16481
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Antonello Dettori 2016-09-03 10:45:33 +02:00 committed by Martin Roth
parent 60a6e153b0
commit d3b55c1bb5
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
void enable_smbus(void)
{
device_t dev;
pci_devfn_t dev;
/* Set the SMBus device statically. */
dev = PCI_DEV(0x0, 0x1f, 0x3);

View File

@ -31,7 +31,7 @@
*/
void enable_usb_bar(void)
{
device_t usb0 = SOC_EHCI1_DEV;
pci_devfn_t usb0 = SOC_EHCI1_DEV;
u32 cmd;
/* USB Controller 0 */