qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-trivial] [PATCH 2/2] esp: add missing const on TypeInfo struct


From: Paolo Bonzini
Subject: Re: [Qemu-trivial] [PATCH 2/2] esp: add missing const on TypeInfo structures
Date: Thu, 02 Aug 2012 17:54:55 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120615 Thunderbird/13.0.1

Il 02/08/2012 10:40, Hervé Poussineau ha scritto:
> 
> Signed-off-by: Hervé Poussineau <address@hidden>
> ---
>  hw/esp.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/esp.c b/hw/esp.c
> index c6422ad..4b00889 100644
> --- a/hw/esp.c
> +++ b/hw/esp.c
> @@ -816,7 +816,7 @@ static void sysbus_esp_class_init(ObjectClass *klass, 
> void *data)
>      dc->vmsd = &vmstate_sysbus_esp_scsi;
>  }
>  
> -static TypeInfo sysbus_esp_info = {
> +static const TypeInfo sysbus_esp_info = {
>      .name          = "esp",
>      .parent        = TYPE_SYS_BUS_DEVICE,
>      .instance_size = sizeof(SysBusESPState),
> @@ -1178,7 +1178,7 @@ static void esp_pci_class_init(ObjectClass *klass, void 
> *data)
>      dc->vmsd = &vmstate_esp_pci_scsi;
>  }
>  
> -static TypeInfo esp_pci_info = {
> +static const TypeInfo esp_pci_info = {
>      .name = "am53c974",
>      .parent = TYPE_PCI_DEVICE,
>      .instance_size = sizeof(PCIESPState),
> 

Applied to scsi-next branch.

Paolo




reply via email to

[Prev in Thread] Current Thread [Next in Thread]