aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/vx800/pci_rawops.h
diff options
context:
space:
mode:
authorAntonello Dettori <dev@dettori.io>2016-11-08 18:44:46 +0100
committerMartin Roth <martinroth@google.com>2016-11-15 18:21:30 +0100
commita2f1d1892144b5e7b62055b1387553d839ad6ee8 (patch)
tree986e61d489bb0812a20ab6e5b9c91cbbf605a384 /src/northbridge/via/vx800/pci_rawops.h
parent8e930c1036a3250404fabc46cb6518e4aefa8fce (diff)
northbridge/via/vx800: transition away from device_t
Replace the use of the old device_t definition inside northbridge/via/vx800. Change-Id: I14a2b4d847f8aeb327d90f385dea998779fae24f Signed-off-by: Antonello Dettori <dev@dettori.io> Reviewed-on: https://review.coreboot.org/17316 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge/via/vx800/pci_rawops.h')
-rw-r--r--src/northbridge/via/vx800/pci_rawops.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/northbridge/via/vx800/pci_rawops.h b/src/northbridge/via/vx800/pci_rawops.h
index aa465d9629..14a0f1fda4 100644
--- a/src/northbridge/via/vx800/pci_rawops.h
+++ b/src/northbridge/via/vx800/pci_rawops.h
@@ -31,7 +31,8 @@ struct VIA_PCI_REG_INIT_TABLE {
u8 Value;
};
-static void pci_modify_config8(device_t dev, unsigned where, u8 orval, u8 mask)
+static void pci_modify_config8(pci_devfn_t dev, unsigned where, u8 orval,
+ u8 mask)
{
u8 data = pci_read_config8(dev, where);
data &= (~mask);
@@ -43,7 +44,7 @@ static void via_pci_inittable(u8 chipversion,
const struct VIA_PCI_REG_INIT_TABLE *initdata)
{
u8 i = 0;
- device_t devbxdxfx;
+ pci_devfn_t devbxdxfx;
for (i = 0;; i++) {
if ((initdata[i].Mask == 0) && (initdata[i].Value == 0)
&& (initdata[i].Bus == 0)