Re: [PATCH] hw/char/parallel: Convert reset handler to DeviceReset

2020-05-13 Thread Richard Henderson
On 5/4/20 2:56 AM, Philippe Mathieu-Daudé wrote: > As TYPE_ISA_PARALLEL inherits from TYPE_ISA_DEVICE, it also > inherits from the DEVICE methods. Convert its reset handler > into a proper DeviceReset method. > > Signed-off-by: Philippe Mathieu-Daudé > --- > hw/char/parallel.c | 9 - > 1

Re: [PATCH] hw/char/parallel: Convert reset handler to DeviceReset

2020-05-11 Thread Philippe Mathieu-Daudé
ping? On 5/4/20 11:56 AM, Philippe Mathieu-Daudé wrote: As TYPE_ISA_PARALLEL inherits from TYPE_ISA_DEVICE, it also inherits from the DEVICE methods. Convert its reset handler into a proper DeviceReset method. Signed-off-by: Philippe Mathieu-Daudé --- hw/char/parallel.c | 9 - 1 fil

[PATCH] hw/char/parallel: Convert reset handler to DeviceReset

2020-05-04 Thread Philippe Mathieu-Daudé
As TYPE_ISA_PARALLEL inherits from TYPE_ISA_DEVICE, it also inherits from the DEVICE methods. Convert its reset handler into a proper DeviceReset method. Signed-off-by: Philippe Mathieu-Daudé --- hw/char/parallel.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hw/ch