[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/3] ppc/pnv: Fix TypeInfo of PnvLpcController abstract class
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [PATCH 2/3] ppc/pnv: Fix TypeInfo of PnvLpcController abstract class |
Date: |
Tue, 1 Sep 2020 11:56:57 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 |
On 8/25/20 1:16 PM, David Gibson wrote:
> From: Cédric Le Goater <clg@kaod.org>
>
> It was missing the instance_size field.
>
> Cc: Eduardo Habkost <ehabkost@redhat.com>
> Signed-off-by: Cédric Le Goater <clg@kaod.org>
> Message-Id: <20200822083920.2668930-1-clg@kaod.org>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> hw/ppc/pnv_lpc.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/hw/ppc/pnv_lpc.c b/hw/ppc/pnv_lpc.c
> index b5ffa48dac..23f1e09492 100644
> --- a/hw/ppc/pnv_lpc.c
> +++ b/hw/ppc/pnv_lpc.c
> @@ -646,7 +646,6 @@ static void pnv_lpc_power8_class_init(ObjectClass *klass,
> void *data)
> static const TypeInfo pnv_lpc_power8_info = {
> .name = TYPE_PNV8_LPC,
> .parent = TYPE_PNV_LPC,
> - .instance_size = sizeof(PnvLpcController),
> .class_init = pnv_lpc_power8_class_init,
> .interfaces = (InterfaceInfo[]) {
> { TYPE_PNV_XSCOM_INTERFACE },
> @@ -687,7 +686,6 @@ static void pnv_lpc_power9_class_init(ObjectClass *klass,
> void *data)
> static const TypeInfo pnv_lpc_power9_info = {
> .name = TYPE_PNV9_LPC,
> .parent = TYPE_PNV_LPC,
> - .instance_size = sizeof(PnvLpcController),
> .class_init = pnv_lpc_power9_class_init,
> };
>
> @@ -768,6 +766,7 @@ static void pnv_lpc_class_init(ObjectClass *klass, void
> *data)
> static const TypeInfo pnv_lpc_info = {
> .name = TYPE_PNV_LPC,
> .parent = TYPE_DEVICE,
> + .instance_size = sizeof(PnvLpcController),
> .class_init = pnv_lpc_class_init,
> .class_size = sizeof(PnvLpcClass),
> .abstract = true,
>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [PATCH 2/3] ppc/pnv: Fix TypeInfo of PnvLpcController abstract class,
Philippe Mathieu-Daudé <=