qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] loader: Fix incorrect parameter name in load_im


From: Michael S. Tsirkin
Subject: Re: [Qemu-devel] [PATCH] loader: Fix incorrect parameter name in load_image_mr() macro
Date: Wed, 9 Mar 2016 11:34:58 +0200

On Tue, Mar 08, 2016 at 12:23:43AM +0000, Peter Maydell wrote:
> From: Jens Wiklander <address@hidden>
> 
> Fix a typo in the load_image_mr() macro: 'mr' was written when
> the parameter name is '_mr'. (This had no visible effects since
> the single use of the macro used 'mr' as the argument.)
> 
> Fixes 76151cacfe956248a25b38b5e8429465584f47bb "loader: Add
> load_image_mr() to load ROM image to a MemoryRegion"
> 
> Signed-off-by: Jens Wiklander <address@hidden>
> Reviewed-by: Peter Maydell <address@hidden>
> [PMM: tweaked commit message]
> Signed-off-by: Peter Maydell <address@hidden>
> ---

Reviewed-by: Michael S. Tsirkin <address@hidden>

Peter, you are merging this, right?

> Oops...
> 
>  include/hw/loader.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/hw/loader.h b/include/hw/loader.h
> index 0ba7808..b3d1358 100644
> --- a/include/hw/loader.h
> +++ b/include/hw/loader.h
> @@ -137,7 +137,7 @@ void hmp_info_roms(Monitor *mon, const QDict *qdict);
>  #define rom_add_blob_fixed(_f, _b, _l, _a)      \
>      rom_add_blob(_f, _b, _l, _l, _a, NULL, NULL, NULL)
>  #define rom_add_file_mr(_f, _mr, _i)            \
> -    rom_add_file(_f, NULL, 0, _i, false, mr)
> +    rom_add_file(_f, NULL, 0, _i, false, _mr)
>  
>  #define PC_ROM_MIN_VGA     0xc0000
>  #define PC_ROM_MIN_OPTION  0xc8000
> -- 
> 1.9.1



reply via email to

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