hw/arm/aspeed: Rename aspeed_soc_init() as AST2400/2500 specific

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
Philippe Mathieu-Daudé 2023-10-24 18:24:13 +02:00 committed by Cédric Le Goater
parent 2f4ec77679
commit a150836239

View File

@ -140,7 +140,7 @@ static qemu_irq aspeed_soc_ast2400_get_irq(AspeedSoCState *s, int dev)
return qdev_get_gpio_in(DEVICE(&s->vic), sc->irqmap[dev]); return qdev_get_gpio_in(DEVICE(&s->vic), sc->irqmap[dev]);
} }
static void aspeed_soc_init(Object *obj) static void aspeed_ast2400_soc_init(Object *obj)
{ {
AspeedSoCState *s = ASPEED_SOC(obj); AspeedSoCState *s = ASPEED_SOC(obj);
AspeedSoCClass *sc = ASPEED_SOC_GET_CLASS(s); AspeedSoCClass *sc = ASPEED_SOC_GET_CLASS(s);
@ -546,7 +546,7 @@ static void aspeed_soc_ast2400_class_init(ObjectClass *oc, void *data)
static const TypeInfo aspeed_soc_ast2400_type_info = { static const TypeInfo aspeed_soc_ast2400_type_info = {
.name = "ast2400-a1", .name = "ast2400-a1",
.parent = TYPE_ASPEED_SOC, .parent = TYPE_ASPEED_SOC,
.instance_init = aspeed_soc_init, .instance_init = aspeed_ast2400_soc_init,
.instance_size = sizeof(AspeedSoCState), .instance_size = sizeof(AspeedSoCState),
.class_init = aspeed_soc_ast2400_class_init, .class_init = aspeed_soc_ast2400_class_init,
}; };
@ -573,7 +573,7 @@ static void aspeed_soc_ast2500_class_init(ObjectClass *oc, void *data)
static const TypeInfo aspeed_soc_ast2500_type_info = { static const TypeInfo aspeed_soc_ast2500_type_info = {
.name = "ast2500-a1", .name = "ast2500-a1",
.parent = TYPE_ASPEED_SOC, .parent = TYPE_ASPEED_SOC,
.instance_init = aspeed_soc_init, .instance_init = aspeed_ast2400_soc_init,
.instance_size = sizeof(AspeedSoCState), .instance_size = sizeof(AspeedSoCState),
.class_init = aspeed_soc_ast2500_class_init, .class_init = aspeed_soc_ast2500_class_init,
}; };