UPSTREAM: southbridge/intel/fsp_rangeley: transition away from device_t
Replace the use of the old device_t definition inside southbridge/intel/fsp_rangeley. BUG=None BRANCH=None TEST=None 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> Change-Id: I6665f85c74eb3e37d78f6eecbec977dc21a5ad12 Reviewed-on: https://chromium-review.googlesource.com/384955 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
be47570c69
commit
3589421b1a
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue