[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-arm] [PATCH] arm: fix machine description
From: |
Peter Maydell |
Subject: |
Re: [Qemu-arm] [PATCH] arm: fix machine description |
Date: |
Wed, 16 Mar 2016 15:51:55 +0000 |
On 16 March 2016 at 15:48, Michael S. Tsirkin <address@hidden> wrote:
> Fix what is clearly a copy-and-paste bug.
>
> Fixes: c29196904b ("target-arm: Add virt class and machine types").
> Cc: Greg Bellows <address@hidden>
> Signed-off-by: Michael S. Tsirkin <address@hidden>
> ---
> hw/arm/virt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index 8c6c996..9cf94e9 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -1382,7 +1382,7 @@ static void virt_class_init(ObjectClass *oc, void *data)
> {
> MachineClass *mc = MACHINE_CLASS(oc);
>
> - mc->desc = "ARM Virtual Machine",
> + mc->desc = "ARM Virtual Machine";
> mc->init = machvirt_init;
> /* Start max_cpus at the maximum QEMU supports. We'll further restrict
> * it later in machvirt_init, where we have more information about the
Hi; this bug (not actually one with any visible ill effects) is fixed
in passing by Wei's "arm: virt: Add an abstract ARM virt machine type"
patch which I have queued in target-arm.next.
thanks
-- PMM