UPSTREAM: northbridge/via/vx800: transition away from device_t

Replace the use of the old device_t definition inside
northbridge/via/vx800.

BUG=None
BRANCH=None
TEST=None

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>

Change-Id: I14a2b4d847f8aeb327d90f385dea998779fae24f
Reviewed-on: https://chromium-review.googlesource.com/412043
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:
Antonello Dettori 2016-11-08 18:44:46 +01:00 committed by chrome-bot
parent 4416622e8f
commit 5352d80f7b
3 changed files with 5 additions and 4 deletions

View file

@ -128,7 +128,7 @@ static unsigned int get_spd_data(unsigned int dimm, unsigned int offset)
void enable_smbus(void)
{
device_t dev;
pci_devfn_t dev;
dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855_LPC), 0);

View file

@ -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)

View file

@ -65,7 +65,7 @@ void SetUMARam(void)
{
#if 1
u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
device_t vga_dev = PCI_DEV(0, 1, 0), d0f0_dev = PCI_DEV(0, 0, 0);
pci_devfn_t vga_dev = PCI_DEV(0, 1, 0), d0f0_dev = PCI_DEV(0, 0, 0);
u8 ByteVal, temp;
const UMARAM *pUMARamTable;
u16 UmaSize;