All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Rom: change Rom's 'isrom' to bool type
@ 2018-10-09  7:08 Li Qiang
  2018-10-09  8:22 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 2+ messages in thread
From: Li Qiang @ 2018-10-09  7:08 UTC (permalink / raw)
  To: peter.maydell, pbonzini; +Cc: qemu-devel, Li Qiang

Signed-off-by: Li Qiang <liq3ea@gmail.com>
---
 hw/core/loader.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/core/loader.c b/hw/core/loader.c
index aa0b3fc867..910f9a97a9 100644
--- a/hw/core/loader.c
+++ b/hw/core/loader.c
@@ -837,7 +837,7 @@ struct Rom {
     uint8_t *data;
     MemoryRegion *mr;
     AddressSpace *as;
-    int isrom;
+    bool isrom;
     char *fw_dir;
     char *fw_file;
 
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH] Rom: change Rom's 'isrom' to bool type
  2018-10-09  7:08 [Qemu-devel] [PATCH] Rom: change Rom's 'isrom' to bool type Li Qiang
@ 2018-10-09  8:22 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-10-09  8:22 UTC (permalink / raw)
  To: Li Qiang, peter.maydell, pbonzini; +Cc: qemu-devel

On 09/10/2018 09:08, Li Qiang wrote:
> Signed-off-by: Li Qiang <liq3ea@gmail.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>  hw/core/loader.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/core/loader.c b/hw/core/loader.c
> index aa0b3fc867..910f9a97a9 100644
> --- a/hw/core/loader.c
> +++ b/hw/core/loader.c
> @@ -837,7 +837,7 @@ struct Rom {
>      uint8_t *data;
>      MemoryRegion *mr;
>      AddressSpace *as;
> -    int isrom;
> +    bool isrom;
>      char *fw_dir;
>      char *fw_file;
>  
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-10-09  8:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-09  7:08 [Qemu-devel] [PATCH] Rom: change Rom's 'isrom' to bool type Li Qiang
2018-10-09  8:22 ` Philippe Mathieu-Daudé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.