* [Qemu-devel] [PATCH] vga_int: remove unused function protype
@ 2018-10-22 8:00 yuchenlin
2018-10-22 23:45 ` Philippe Mathieu-Daudé
2018-10-29 9:44 ` [Qemu-devel] " Gerd Hoffmann
0 siblings, 2 replies; 5+ messages in thread
From: yuchenlin @ 2018-10-22 8:00 UTC (permalink / raw)
To: qemu-devel; +Cc: kraxel, yuchenlin
From: yuchenlin <yuchenlin@synology.com>
Signed-off-by: yuchenlin <yuchenlin@synology.com>
---
hw/display/vga_int.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h
index 6e4fa48a79..55c418eab5 100644
--- a/hw/display/vga_int.h
+++ b/hw/display/vga_int.h
@@ -166,7 +166,6 @@ MemoryRegion *vga_init_io(VGACommonState *s, Object *obj,
const MemoryRegionPortio **vbe_ports);
void vga_common_reset(VGACommonState *s);
-void vga_sync_dirty_bitmap(VGACommonState *s);
void vga_dirty_log_start(VGACommonState *s);
void vga_dirty_log_stop(VGACommonState *s);
--
2.18.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] vga_int: remove unused function protype
2018-10-22 8:00 [Qemu-devel] [PATCH] vga_int: remove unused function protype yuchenlin
@ 2018-10-22 23:45 ` Philippe Mathieu-Daudé
2018-10-25 13:52 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier
2018-10-29 9:44 ` [Qemu-devel] " Gerd Hoffmann
1 sibling, 1 reply; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-10-22 23:45 UTC (permalink / raw)
To: yuchenlin, qemu-devel; +Cc: kraxel, qemu-trivial
On 22/10/18 10:00, yuchenlin--- via Qemu-devel wrote:
> From: yuchenlin <yuchenlin@synology.com>
>
> Signed-off-by: yuchenlin <yuchenlin@synology.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> hw/display/vga_int.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h
> index 6e4fa48a79..55c418eab5 100644
> --- a/hw/display/vga_int.h
> +++ b/hw/display/vga_int.h
> @@ -166,7 +166,6 @@ MemoryRegion *vga_init_io(VGACommonState *s, Object *obj,
> const MemoryRegionPortio **vbe_ports);
> void vga_common_reset(VGACommonState *s);
>
> -void vga_sync_dirty_bitmap(VGACommonState *s);
> void vga_dirty_log_start(VGACommonState *s);
> void vga_dirty_log_stop(VGACommonState *s);
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] vga_int: remove unused function protype
2018-10-22 23:45 ` Philippe Mathieu-Daudé
@ 2018-10-25 13:52 ` Laurent Vivier
0 siblings, 0 replies; 5+ messages in thread
From: Laurent Vivier @ 2018-10-25 13:52 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, yuchenlin, qemu-devel; +Cc: qemu-trivial, kraxel
On 23/10/2018 00:45, Philippe Mathieu-Daudé wrote:
> On 22/10/18 10:00, yuchenlin--- via Qemu-devel wrote:
>> From: yuchenlin <yuchenlin@synology.com>
>>
>> Signed-off-by: yuchenlin <yuchenlin@synology.com>
>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>
Applied,
Thanks,
Laurent
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] vga_int: remove unused function protype
2018-10-22 8:00 [Qemu-devel] [PATCH] vga_int: remove unused function protype yuchenlin
2018-10-22 23:45 ` Philippe Mathieu-Daudé
@ 2018-10-29 9:44 ` Gerd Hoffmann
2018-10-29 10:01 ` yuchenlin
1 sibling, 1 reply; 5+ messages in thread
From: Gerd Hoffmann @ 2018-10-29 9:44 UTC (permalink / raw)
To: yuchenlin; +Cc: qemu-devel
On Mon, Oct 22, 2018 at 04:00:53PM +0800, yuchenlin@synology.com wrote:
> From: yuchenlin <yuchenlin@synology.com>
>
> Signed-off-by: yuchenlin <yuchenlin@synology.com>
> ---
> hw/display/vga_int.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h
> index 6e4fa48a79..55c418eab5 100644
> --- a/hw/display/vga_int.h
> +++ b/hw/display/vga_int.h
> @@ -166,7 +166,6 @@ MemoryRegion *vga_init_io(VGACommonState *s, Object *obj,
> const MemoryRegionPortio **vbe_ports);
> void vga_common_reset(VGACommonState *s);
>
> -void vga_sync_dirty_bitmap(VGACommonState *s);
> void vga_dirty_log_start(VGACommonState *s);
> void vga_dirty_log_stop(VGACommonState *s);
Added to vga queue.
thanks,
Gerd
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] vga_int: remove unused function protype
2018-10-29 9:44 ` [Qemu-devel] " Gerd Hoffmann
@ 2018-10-29 10:01 ` yuchenlin
0 siblings, 0 replies; 5+ messages in thread
From: yuchenlin @ 2018-10-29 10:01 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel, laurent, philmd
On 2018-10-29 17:44, Gerd Hoffmann wrote:
> On Mon, Oct 22, 2018 at 04:00:53PM +0800, yuchenlin@synology.com wrote:
>> From: yuchenlin <yuchenlin@synology.com>
>>
>> Signed-off-by: yuchenlin <yuchenlin@synology.com>
>> ---
>> hw/display/vga_int.h | 1 -
>> 1 file changed, 1 deletion(-)
>>
>> diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h
>> index 6e4fa48a79..55c418eab5 100644
>> --- a/hw/display/vga_int.h
>> +++ b/hw/display/vga_int.h
>> @@ -166,7 +166,6 @@ MemoryRegion *vga_init_io(VGACommonState *s,
>> Object *obj,
>> const MemoryRegionPortio **vbe_ports);
>> void vga_common_reset(VGACommonState *s);
>>
>> -void vga_sync_dirty_bitmap(VGACommonState *s);
>> void vga_dirty_log_start(VGACommonState *s);
>> void vga_dirty_log_stop(VGACommonState *s);
>
> Added to vga queue.
>
> thanks,
> Gerd
Hi, Gerd
Laurent has sent a pull request for this trivial commit.
See:
http://lists.nongnu.org/archive/html/qemu-devel/2018-10/msg05896.html
Thanks,
yuchenlin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-10-29 10:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-22 8:00 [Qemu-devel] [PATCH] vga_int: remove unused function protype yuchenlin
2018-10-22 23:45 ` Philippe Mathieu-Daudé
2018-10-25 13:52 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier
2018-10-29 9:44 ` [Qemu-devel] " Gerd Hoffmann
2018-10-29 10:01 ` yuchenlin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).