aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorAntonello Dettori <dev@dettori.io>2016-09-03 10:45:33 +0200
committerMartin Roth <martinroth@google.com>2016-09-13 17:20:02 +0200
commit823f1a9bbfc5daf72e5f2f76bf2034b250396d9d (patch)
tree28a033f70ce5044818fc8d5776dcadc973645357 /src/southbridge
parent1a9da7acf697929392d044f49bad55df25e05ef6 (diff)
southbridge/via/vt8237r: transition away from device_t
Replace the use of the old device_t definition inside southbridge/via/vt8237r. Change-Id: I9c1211e698ef35f56dd71c2c021dea680091c1ee Signed-off-by: Antonello Dettori <dev@dettori.io> Reviewed-on: https://review.coreboot.org/16489 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/via/vt8237r/early_smbus.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/southbridge/via/vt8237r/early_smbus.c b/src/southbridge/via/vt8237r/early_smbus.c
index e53b71ea4f..23f5928e34 100644
--- a/src/southbridge/via/vt8237r/early_smbus.c
+++ b/src/southbridge/via/vt8237r/early_smbus.c
@@ -144,9 +144,9 @@ void smbus_write_byte(u8 dimm, u8 offset, u8 data)
#define PSONREADY_TIMEOUT 0x7fffffff
-static device_t get_vt8237_lpc(void)
+static pci_devfn_t get_vt8237_lpc(void)
{
- device_t dev;
+ pci_devfn_t dev;
/* Power management controller */
dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
@@ -169,7 +169,7 @@ static device_t get_vt8237_lpc(void)
*/
void enable_smbus(void)
{
- device_t dev;
+ pci_devfn_t dev;
int loops;
/* Power management controller */
@@ -258,7 +258,7 @@ void smbus_fixup(const struct mem_controller *ctrl)
void vt8237_sb_enable_fid_vid(void)
{
- device_t dev, devctl;
+ pci_devfn_t dev, devctl;
u16 devid;
/* Power management controller */
@@ -315,7 +315,7 @@ void vt8237_sb_enable_fid_vid(void)
void enable_rom_decode(void)
{
- device_t dev;
+ pci_devfn_t dev;
/* Power management controller */
dev = get_vt8237_lpc();
@@ -328,7 +328,7 @@ void enable_rom_decode(void)
int acpi_get_sleep_type(void)
{
- device_t dev;
+ pci_devfn_t dev;
u16 tmp;
printk(BIOS_DEBUG, "IN TEST WAKEUP\n");
@@ -353,7 +353,7 @@ int acpi_get_sleep_type(void)
#if defined(__GNUC__)
void vt8237_early_spi_init(void)
{
- device_t dev;
+ pci_devfn_t dev;
volatile u16 *spireg;
u32 tmp;
@@ -410,7 +410,7 @@ int vt8237_early_network_init(struct vt8237_network_rom *rom)
{
struct vt8237_network_rom n;
int i, loops;
- device_t dev;
+ pci_devfn_t dev;
u32 tmp;
u8 status;
u16 *rom_write;