From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: xiaoqiang zhao <zxq_yx_007@163.com>
Cc: qemu-devel@nongnu.org, pbonzini@redhat.com, michael@walle.cc,
cornelia.huck@de.ibm.com, agraf@suse.de
Subject: Re: [Qemu-devel] [PATCH 2/6] hw/char: QOM'ify etraxfs_ser.c
Date: Fri, 6 May 2016 09:42:00 +0200 [thread overview]
Message-ID: <20160506074200.GE16305@toto> (raw)
In-Reply-To: <1458206430-21917-3-git-send-email-zxq_yx_007@163.com>
On Thu, Mar 17, 2016 at 05:20:26PM +0800, xiaoqiang zhao wrote:
> Drop the old SysBus init function and use instance_init
>
> Signed-off-by: xiaoqiang zhao <zxq_yx_007@163.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> ---
> hw/char/etraxfs_ser.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/hw/char/etraxfs_ser.c b/hw/char/etraxfs_ser.c
> index 146b387..ede7024 100644
> --- a/hw/char/etraxfs_ser.c
> +++ b/hw/char/etraxfs_ser.c
> @@ -209,12 +209,13 @@ static void etraxfs_ser_reset(DeviceState *d)
>
> }
>
> -static int etraxfs_ser_init(SysBusDevice *dev)
> +static void etraxfs_ser_init(Object *obj)
> {
> - ETRAXSerial *s = ETRAX_SERIAL(dev);
> + ETRAXSerial *s = ETRAX_SERIAL(obj);
> + SysBusDevice *dev = SYS_BUS_DEVICE(obj);
>
> sysbus_init_irq(dev, &s->irq);
> - memory_region_init_io(&s->mmio, OBJECT(s), &ser_ops, s,
> + memory_region_init_io(&s->mmio, obj, &ser_ops, s,
> "etraxfs-serial", R_MAX * 4);
> sysbus_init_mmio(dev, &s->mmio);
>
> @@ -225,15 +226,12 @@ static int etraxfs_ser_init(SysBusDevice *dev)
> serial_can_receive, serial_receive,
> serial_event, s);
> }
> - return 0;
> }
>
> static void etraxfs_ser_class_init(ObjectClass *klass, void *data)
> {
> DeviceClass *dc = DEVICE_CLASS(klass);
> - SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
>
> - k->init = etraxfs_ser_init;
> dc->reset = etraxfs_ser_reset;
> /* Reason: init() method uses qemu_char_get_next_serial() */
> dc->cannot_instantiate_with_device_add_yet = true;
> @@ -243,6 +241,7 @@ static const TypeInfo etraxfs_ser_info = {
> .name = TYPE_ETRAX_FS_SERIAL,
> .parent = TYPE_SYS_BUS_DEVICE,
> .instance_size = sizeof(ETRAXSerial),
> + .instance_init = etraxfs_ser_init,
> .class_init = etraxfs_ser_class_init,
> };
>
> --
> 2.1.4
>
>
next prev parent reply other threads:[~2016-05-06 7:42 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-17 9:20 [Qemu-devel] [PATCH 0/6] QOM'ify hw/char devices xiaoqiang zhao
2016-03-17 9:20 ` [Qemu-devel] [PATCH 1/6] hw/char: QOM'ify escc.c xiaoqiang zhao
2016-03-17 9:20 ` [Qemu-devel] [PATCH 2/6] hw/char: QOM'ify etraxfs_ser.c xiaoqiang zhao
2016-05-06 7:42 ` Edgar E. Iglesias [this message]
2016-05-09 10:51 ` Paolo Bonzini
2016-03-17 9:20 ` [Qemu-devel] [PATCH 3/6] hw/char: QOM'ify lm32_juart.c xiaoqiang zhao
2016-03-17 9:20 ` [Qemu-devel] [PATCH 4/6] hw/char: QOM'ify lm32_uart.c xiaoqiang zhao
2016-03-17 9:20 ` [Qemu-devel] [PATCH 5/6] hw/char: QOM'ify sclpconsole-lm.c xiaoqiang zhao
2016-03-17 10:08 ` Cornelia Huck
2016-03-17 10:38 ` zxq_yx_007
2016-03-17 9:20 ` [Qemu-devel] [PATCH 6/6] hw/char: QOM'ify sclpconsole.c xiaoqiang zhao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160506074200.GE16305@toto \
--to=edgar.iglesias@gmail.com \
--cc=agraf@suse.de \
--cc=cornelia.huck@de.ibm.com \
--cc=michael@walle.cc \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=zxq_yx_007@163.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.