nb/via/cx700: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: Iaca908cc9ba5d11468a97d2f43911db925b93f1e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26424 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
315b239c35
commit
8aafbd8252
|
@ -21,10 +21,10 @@
|
|||
|
||||
/* This is the AGP 3.0 "bridge" @ Bus 0 Device 1 Func 0 */
|
||||
|
||||
static void agp_bridge_init(device_t dev)
|
||||
static void agp_bridge_init(struct device *dev)
|
||||
{
|
||||
|
||||
device_t north_dev;
|
||||
struct device *north_dev;
|
||||
u8 reg8;
|
||||
north_dev = dev_find_device(PCI_VENDOR_ID_VIA, 0x3324, 0);
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ static void pci_routing_fixup(struct device *dev)
|
|||
* can't figure out how to do !!!!
|
||||
*/
|
||||
|
||||
static void setup_pm(device_t dev)
|
||||
static void setup_pm(struct device *dev)
|
||||
{
|
||||
/* Debounce LID and PWRBTN# Inputs for 16ms. */
|
||||
pci_write_config8(dev, 0x80, 0x20);
|
||||
|
@ -226,7 +226,7 @@ static void cx700_set_lpc_registers(struct device *dev)
|
|||
|
||||
}
|
||||
|
||||
static void cx700_read_resources(device_t dev)
|
||||
static void cx700_read_resources(struct device *dev)
|
||||
{
|
||||
struct resource *res;
|
||||
|
||||
|
@ -248,7 +248,7 @@ static void cx700_read_resources(device_t dev)
|
|||
res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
|
||||
}
|
||||
|
||||
static void cx700_set_resources(device_t dev)
|
||||
static void cx700_set_resources(struct device *dev)
|
||||
{
|
||||
struct resource *resource;
|
||||
resource = find_resource(dev, 1);
|
||||
|
@ -256,7 +256,7 @@ static void cx700_set_resources(device_t dev)
|
|||
pci_dev_set_resources(dev);
|
||||
}
|
||||
|
||||
static void cx700_enable_resources(device_t dev)
|
||||
static void cx700_enable_resources(struct device *dev)
|
||||
{
|
||||
/* Enable SuperIO decoding */
|
||||
pci_dev_enable_resources(dev);
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
#include <cbmem.h>
|
||||
#include <arch/acpi.h>
|
||||
|
||||
static void pci_domain_set_resources(device_t dev)
|
||||
static void pci_domain_set_resources(struct device *dev)
|
||||
{
|
||||
device_t mc_dev;
|
||||
struct device *mc_dev;
|
||||
u32 pci_tolm;
|
||||
unsigned char reg;
|
||||
unsigned long tomk, tolmk;
|
||||
|
@ -78,7 +78,7 @@ static void pci_domain_set_resources(device_t dev)
|
|||
|
||||
unsigned long acpi_fill_mcfg(unsigned long current)
|
||||
{
|
||||
device_t dev;
|
||||
struct device *dev;
|
||||
u64 mmcfg;
|
||||
|
||||
dev = dev_find_device(0x1106, 0x324b, 0); // 0:0x13.0
|
||||
|
@ -107,7 +107,7 @@ static struct device_operations pci_domain_ops = {
|
|||
.write_acpi_tables = acpi_write_hpet,
|
||||
};
|
||||
|
||||
static void cpu_bus_init(device_t dev)
|
||||
static void cpu_bus_init(struct device *dev)
|
||||
{
|
||||
initialize_cpus(dev->link_list);
|
||||
}
|
||||
|
|
|
@ -127,7 +127,7 @@ static int via_cx700_int15_handler(void)
|
|||
#ifdef UNUSED_CODE
|
||||
static void write_protect_vgabios(void)
|
||||
{
|
||||
device_t dev;
|
||||
struct device *dev;
|
||||
|
||||
printk(BIOS_DEBUG, "write_protect_vgabios\n");
|
||||
|
||||
|
@ -154,7 +154,7 @@ static void vga_enable_console(void)
|
|||
#endif
|
||||
}
|
||||
|
||||
static void vga_init(device_t dev)
|
||||
static void vga_init(struct device *dev)
|
||||
{
|
||||
u8 reg8;
|
||||
|
||||
|
|
Loading…
Reference in New Issue