aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/ricoh
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-19 10:52:02 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-21 14:01:49 +0000
commit8349cb58de2fb4e23d3054491a9398c9c66b5a62 (patch)
tree1b5b666112918543cb957936e1eeb3b0286645dc /src/southbridge/ricoh
parent59b8e4f511e299f6ef189b6a8fe50a4f23e84f4d (diff)
sb/ricoh/rl5c476: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I04a1fc27f67555132667e42f14fd0263a18b56c6 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26399 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/southbridge/ricoh')
-rw-r--r--src/southbridge/ricoh/rl5c476/rl5c476.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/southbridge/ricoh/rl5c476/rl5c476.c b/src/southbridge/ricoh/rl5c476/rl5c476.c
index 2a73ab13a7..bdbcba7053 100644
--- a/src/southbridge/ricoh/rl5c476/rl5c476.c
+++ b/src/southbridge/ricoh/rl5c476/rl5c476.c
@@ -28,7 +28,7 @@
static int enable_cf_boot = 0;
static unsigned int cf_base;
-static void rl5c476_init(device_t dev)
+static void rl5c476_init(struct device *dev)
{
pc16reg_t *pc16;
unsigned char *base;
@@ -158,7 +158,7 @@ static void rl5c476_init(device_t dev)
*cptr = 0x41;
}
-static void rl5c476_read_resources(device_t dev)
+static void rl5c476_read_resources(struct device *dev)
{
struct resource *resource;
@@ -177,7 +177,7 @@ static void rl5c476_read_resources(device_t dev)
cardbus_read_resources(dev);
}
-static void rl5c476_set_resources(device_t dev)
+static void rl5c476_set_resources(struct device *dev)
{
struct resource *resource;
printk(BIOS_DEBUG, "%s In set resources\n",dev_path(dev));
@@ -194,7 +194,8 @@ static void rl5c476_set_resources(device_t dev)
}
-static void rl5c476_set_subsystem(device_t dev, unsigned vendor, unsigned device)
+static void rl5c476_set_subsystem(struct device *dev, unsigned vendor,
+ unsigned device)
{
u16 miscreg = pci_read_config16(dev, 0x82);
/* Enable subsystem id register writes */
@@ -225,7 +226,7 @@ static const struct pci_driver ricoh_rl5c476_driver __pci_driver = {
.device = PCI_DEVICE_ID_RICOH_RL5C476,
};
-static void southbridge_init(device_t dev)
+static void southbridge_init(struct device *dev)
{
struct southbridge_ricoh_rl5c476_config *conf = dev->chip_info;
enable_cf_boot = conf->enable_cf;