From 59b8e4f511e299f6ef189b6a8fe50a4f23e84f4d Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 20 May 2018 10:59:17 +0200 Subject: nb/via/vx800: Get rid of device_t Use of device_t has been abandoned in ramstage. Change-Id: Ib432d3c3ce2788b0138a1b0e852385ab4f9b65ee Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/26425 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/northbridge/via/vx800/lpc.c | 6 +++--- src/northbridge/via/vx800/northbridge.c | 8 ++++---- src/northbridge/via/vx800/vga.c | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src/northbridge') diff --git a/src/northbridge/via/vx800/lpc.c b/src/northbridge/via/vx800/lpc.c index 1ab11c05f7..93413a2d1f 100644 --- a/src/northbridge/via/vx800/lpc.c +++ b/src/northbridge/via/vx800/lpc.c @@ -94,7 +94,7 @@ static void pci_routing_fixup(struct device *dev) printk(BIOS_SPEW, "%s: DONE\n", __FUNCTION__); } -static void setup_pm(device_t dev) +static void setup_pm(struct device *dev) { u16 tmp; /* Debounce LID and PWRBTN# Inputs for 16ms. */ @@ -274,7 +274,7 @@ static void vx800_sb_init(struct device *dev) /* total kludge to get lxb to call our childrens set/enable functions - these are not called unless this device has a resource to set - so set a dummy one */ -static void vx800_read_resources(device_t dev) +static void vx800_read_resources(struct device *dev) { struct resource *resource; @@ -287,7 +287,7 @@ static void vx800_read_resources(device_t dev) resource->base = 0x2e; } -static void vx800_set_resources(device_t dev) +static void vx800_set_resources(struct device *dev) { struct resource *resource; resource = find_resource(dev, 1); diff --git a/src/northbridge/via/vx800/northbridge.c b/src/northbridge/via/vx800/northbridge.c index 609abf88c1..2f1ddc19c4 100644 --- a/src/northbridge/via/vx800/northbridge.c +++ b/src/northbridge/via/vx800/northbridge.c @@ -33,7 +33,7 @@ /* !!FIXME!! I declared this to fix the build. */ u8 acpi_sleep_type = 0; -static void memctrl_init(device_t dev) +static void memctrl_init(struct device *dev) { /* set VGA in uma_ram_setting.c, not in this function. @@ -51,13 +51,13 @@ static const struct pci_driver memctrl_driver __pci_driver = { .device = PCI_DEVICE_ID_VIA_VX855_MEMCTRL, }; -static void pci_domain_set_resources(device_t dev) +static void pci_domain_set_resources(struct device *dev) { /* * the order is important to find the correct RAM size. */ u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 }; - device_t mc_dev; + struct device *mc_dev; u32 pci_tolm; u8 reg; @@ -124,7 +124,7 @@ static struct device_operations pci_domain_ops = { .scan_bus = pci_domain_scan_bus, }; -static void cpu_bus_init(device_t dev) +static void cpu_bus_init(struct device *dev) { initialize_cpus(dev->link_list); } diff --git a/src/northbridge/via/vx800/vga.c b/src/northbridge/via/vx800/vga.c index 4109f62546..447c762a9a 100644 --- a/src/northbridge/via/vx800/vga.c +++ b/src/northbridge/via/vx800/vga.c @@ -72,7 +72,7 @@ static int via_vx800_int15_handler(void) * N: Frame Buffer Size 2^N MB */ u8 i; - device_t dev; + struct device *dev; dev = dev_find_slot(0, PCI_DEVFN(0, 3)); i = pci_read_config8(dev, 0xa1); i = (i & 0x70); @@ -124,7 +124,7 @@ static int via_vx800_int15_handler(void) #ifdef UNUSED_CODE static void write_protect_vgabios(void) { - device_t dev; + struct device *dev; printk(BIOS_INFO, "write_protect_vgabios\n"); /* there are two possible devices. Just do both. */ @@ -149,7 +149,7 @@ static void vga_enable_console(void) } extern u8 acpi_sleep_type; -static void vga_init(device_t dev) +static void vga_init(struct device *dev) { uint8_t reg8; -- cgit v1.2.3