From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N0ARO-0006Dh-Ap for qemu-devel@nongnu.org; Tue, 20 Oct 2009 04:51:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N0ARJ-0006CQ-Jd for qemu-devel@nongnu.org; Tue, 20 Oct 2009 04:51:38 -0400 Received: from [199.232.76.173] (port=55908 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N0ARJ-0006CN-H5 for qemu-devel@nongnu.org; Tue, 20 Oct 2009 04:51:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59201) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N0ARI-0001lQ-Sp for qemu-devel@nongnu.org; Tue, 20 Oct 2009 04:51:33 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9K8pWU4028239 for ; Tue, 20 Oct 2009 04:51:32 -0400 Message-ID: <4ADD7A12.1040305@redhat.com> Date: Tue, 20 Oct 2009 10:51:30 +0200 From: Gerd Hoffmann MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH v9 3/3] virtio-console: Add a new virtserialport device for generic serial port support References: <1256022825-16180-1-git-send-email-amit.shah@redhat.com> <1256022825-16180-2-git-send-email-amit.shah@redhat.com> <1256022825-16180-3-git-send-email-amit.shah@redhat.com> <1256022825-16180-4-git-send-email-amit.shah@redhat.com> In-Reply-To: <1256022825-16180-4-git-send-email-amit.shah@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Amit Shah Cc: qemu-devel@nongnu.org > @@ -107,3 +107,41 @@ static void virtcon_register(void) > virtio_serial_port_qdev_register(&virtcon_info); > } > device_init(virtcon_register) > +static VirtIOSerialPortInfo virtserial_port_info = { > + .qdev.name = "virtserialport", > + .qdev.size = sizeof(VirtConsole), > + .init = virtserial_port_initfn, > + .have_data = flush_buf, > + .qdev.props = (Property[]) { > + DEFINE_PROP_CHR("chardev", VirtConsole, chr), > + DEFINE_PROP_STRING("name", VirtIOSerialPort, name), likewise: DEFINE_PROP_STRING("name", VirtConsole, port.name), > +static void virtserial_port_register(void) > +{ > + virtio_serial_port_qdev_register(&virtserial_port_info); > +} > +device_init(virtserial_port_register) You can simply stick two register calls into the existing init function ... cheers, Gerd