Message ID | 20250204180746.58357-6-philmd@linaro.org |
---|---|
State | New |
Headers | show |
Series | hw/boards: Try to make sense of MachineClass::no_sdcard flag | expand |
On 4/2/25 19:07, Philippe Mathieu-Daudé wrote: > Previous commit left this method empty, remove it. > > Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> > --- > hw/ppc/e500.c | 5 ----- > 1 file changed, 5 deletions(-) > > diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c > index 59208da87de..26933e0457e 100644 > --- a/hw/ppc/e500.c > +++ b/hw/ppc/e500.c > @@ -1285,10 +1285,6 @@ static void e500_ccsr_initfn(Object *obj) > MPC8544_CCSRBAR_SIZE); > } > > -static void ppce500_machine_class_init(ObjectClass *oc, void *data) > -{ > -} Hmm I think it is a left-over and shouldn't be necessary in patch #2.
On 04/02/2025 19.12, Philippe Mathieu-Daudé wrote: > On 4/2/25 19:07, Philippe Mathieu-Daudé wrote: >> Previous commit left this method empty, remove it. >> >> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> >> --- >> hw/ppc/e500.c | 5 ----- >> 1 file changed, 5 deletions(-) >> >> diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c >> index 59208da87de..26933e0457e 100644 >> --- a/hw/ppc/e500.c >> +++ b/hw/ppc/e500.c >> @@ -1285,10 +1285,6 @@ static void e500_ccsr_initfn(Object *obj) >> MPC8544_CCSRBAR_SIZE); >> } >> -static void ppce500_machine_class_init(ObjectClass *oc, void *data) >> -{ >> -} > > Hmm I think it is a left-over and shouldn't be necessary in patch #2. In case you want to keep it (or want to squash it into the previous patch): Reviewed-by: Thomas Huth <thuth@redhat.com>
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c index 59208da87de..26933e0457e 100644 --- a/hw/ppc/e500.c +++ b/hw/ppc/e500.c @@ -1285,10 +1285,6 @@ static void e500_ccsr_initfn(Object *obj) MPC8544_CCSRBAR_SIZE); } -static void ppce500_machine_class_init(ObjectClass *oc, void *data) -{ -} - static const TypeInfo e500_ccsr_info = { .name = TYPE_CCSR, .parent = TYPE_SYS_BUS_DEVICE, @@ -1302,7 +1298,6 @@ static const TypeInfo ppce500_info = { .abstract = true, .instance_size = sizeof(PPCE500MachineState), .class_size = sizeof(PPCE500MachineClass), - .class_init = ppce500_machine_class_init, }; static void e500_register_types(void)
Previous commit left this method empty, remove it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- hw/ppc/e500.c | 5 ----- 1 file changed, 5 deletions(-)