Re: [Qemu-devel] [PATCH 1/2] virtio-ccw: common reset handler

2018-05-07 Thread David Hildenbrand
On 07.05.2018 17:51, Cornelia Huck wrote: > All the different virtio ccw devices use the same reset handler, > so let's move setting it into the base virtio ccw device class. > > Signed-off-by: Cornelia Huck > --- > hw/s390x/virtio-ccw.c | 13 + > 1 file changed, 1 insertion(+), 12 d

Re: [Qemu-devel] [PATCH 1/2] virtio-ccw: common reset handler

2018-05-07 Thread Thomas Huth
On 07.05.2018 17:51, Cornelia Huck wrote: > All the different virtio ccw devices use the same reset handler, > so let's move setting it into the base virtio ccw device class. > > Signed-off-by: Cornelia Huck > --- > hw/s390x/virtio-ccw.c | 13 + > 1 file changed, 1 insertion(+), 12 d

[Qemu-devel] [PATCH 1/2] virtio-ccw: common reset handler

2018-05-07 Thread Cornelia Huck
All the different virtio ccw devices use the same reset handler, so let's move setting it into the base virtio ccw device class. Signed-off-by: Cornelia Huck --- hw/s390x/virtio-ccw.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/hw/s390x/virtio-ccw.c b/hw/s39