summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-20 10:59:17 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-21 14:01:33 +0000
commit59b8e4f511e299f6ef189b6a8fe50a4f23e84f4d (patch)
treeb188d2678c795d92f0eea92ef28ca94f9b46b54c /src
parente58a782c113c98c02f070cfb0c9c910902833e9b (diff)
downloadcoreboot-59b8e4f511e299f6ef189b6a8fe50a4f23e84f4d.tar.gz
coreboot-59b8e4f511e299f6ef189b6a8fe50a4f23e84f4d.tar.bz2
coreboot-59b8e4f511e299f6ef189b6a8fe50a4f23e84f4d.zip
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 <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26425 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/via/vx800/lpc.c6
-rw-r--r--src/northbridge/via/vx800/northbridge.c8
-rw-r--r--src/northbridge/via/vx800/vga.c6
3 files changed, 10 insertions, 10 deletions
diff --git a/src/northbridge/via/vx800/lpc.c b/src/northbridge/via/vx800/lpc.c
index 1ab11c05f7bb..93413a2d1f07 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 609abf88c128..2f1ddc19c4be 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 4109f6254650..447c762a9a98 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;