From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MWWoR-00062v-Fi for qemu-devel@nongnu.org; Thu, 30 Jul 2009 10:40:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MWWoM-000600-Pi for qemu-devel@nongnu.org; Thu, 30 Jul 2009 10:40:55 -0400 Received: from [199.232.76.173] (port=48986 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWWoM-0005zp-E4 for qemu-devel@nongnu.org; Thu, 30 Jul 2009 10:40:50 -0400 Received: from mail-gx0-f220.google.com ([209.85.217.220]:61564) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MWWoM-0006BL-0p for qemu-devel@nongnu.org; Thu, 30 Jul 2009 10:40:50 -0400 Received: by gxk20 with SMTP id 20so6177961gxk.10 for ; Thu, 30 Jul 2009 07:40:49 -0700 (PDT) Message-ID: <4A71B0EE.5060509@codemonkey.ws> Date: Thu, 30 Jul 2009 09:40:46 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 1/5] qdev/isa: add isa bus support to qdev. References: <1248797778-783-1-git-send-email-kraxel@redhat.com> <1248797778-783-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1248797778-783-2-git-send-email-kraxel@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: Gerd Hoffmann Cc: qemu-devel@nongnu.org Gerd Hoffmann wrote: > Wrong mmio stuff from previous version ripped out. > Pretty simple and straigt forward now. > IRQs modeled simliar to sysbus. > > Signed-off-by: Gerd Hoffmann > --- > Makefile.target | 10 +++--- > hw/isa-bus.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ > hw/isa.h | 25 ++++++++++++++++ > 3 files changed, 114 insertions(+), 5 deletions(-) > create mode 100644 hw/isa-bus.c > > > diff --git a/hw/isa-bus.c b/hw/isa-bus.c > new file mode 100644 > index 0000000..3dea55b > --- /dev/null > +++ b/hw/isa-bus.c > @@ -0,0 +1,84 @@ > +#include "hw.h" > +#include "sysemu.h" > +#include "isa.h" > + Need copyright/license. Regards, Anthony Liguori