From patchwork Mon Feb 4 17:29:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 218004 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3FBC92C02AE for ; Tue, 5 Feb 2013 04:30:39 +1100 (EST) Received: from localhost ([::1]:40148 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2PsL-0007Nd-Bt for incoming@patchwork.ozlabs.org; Mon, 04 Feb 2013 12:30:37 -0500 Received: from eggs.gnu.org ([208.118.235.92]:37524) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2Ps9-0007NK-Go for qemu-devel@nongnu.org; Mon, 04 Feb 2013 12:30:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2Ps7-0002Iu-FW for qemu-devel@nongnu.org; Mon, 04 Feb 2013 12:30:25 -0500 Received: from mail-ea0-f176.google.com ([209.85.215.176]:55003) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2Ps7-0002In-8t for qemu-devel@nongnu.org; Mon, 04 Feb 2013 12:30:23 -0500 Received: by mail-ea0-f176.google.com with SMTP id a13so2948385eaa.35 for ; Mon, 04 Feb 2013 09:30:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:subject:date:message-id:x-mailer :in-reply-to:references; bh=HCAzhFd46tNBF4G/OGN1TiSvuoQdrkBamBPcA8SMeLs=; b=v+H5eNoWa8GqRWK6bRmBQsiOOb036+E1e5q0/l0ULDAgEz6lJ526Xub4OpRgE0N/HU gknmYqDR17exI+qiOhqfEWBIxXOFap1ddtvrLZhQi6NLlOb20jpJPiPoG3l1lh+HAZdP ibUmtvydqLWqkrOa8WwUi0OI/qNKBRoZKlkvWRku241xYVhFnMlgNq5u2UBwfpz7aXlI YgiAro9nCN255hY0KIajqokkbiXv2xyml4gq8lthw9wt4rK3qmbVF6EpcdC33QmyhMKE PlkalIfn7Vyj8fmy2TaXs892uJV9JsH2zAGl5Dw76u9RFkILVcFLDhUbwCU6Y4NRtKJK Qjrw== X-Received: by 10.14.201.69 with SMTP id a45mr73454148eeo.43.1359999022319; Mon, 04 Feb 2013 09:30:22 -0800 (PST) Received: from localhost.localdomain (93-34-179-137.ip50.fastwebnet.it. [93.34.179.137]) by mx.google.com with ESMTPS id b2sm28291549eep.9.2013.02.04.09.30.20 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 04 Feb 2013 09:30:21 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 4 Feb 2013 18:29:46 +0100 Message-Id: <1359999004-22982-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1359999004-22982-1-git-send-email-pbonzini@redhat.com> References: <1359999004-22982-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.215.176 Subject: [Qemu-devel] [PATCH 01/19] hw: move char backends to backends/ X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Braille and msmouse support is in hw/, but it is not hardware. Move it to the backends/ directory. Signed-off-by: Paolo Bonzini --- backends/Makefile.objs | 4 ++++ {hw => backends}/baum.c | 4 ++-- {hw => backends}/msmouse.c | 2 +- hw/Makefile.objs | 4 +--- {hw => include/char}/baum.h | 0 {hw => include/char}/msmouse.h | 0 qemu-char.c | 4 ++-- vl.c | 2 +- 8 files changed, 11 insertions(+), 9 deletions(-) rename {hw => backends}/baum.c (99%) rename {hw => backends}/msmouse.c (99%) rename {hw => include/char}/baum.h (100%) rename {hw => include/char}/msmouse.h (100%) diff --git a/backends/Makefile.objs b/backends/Makefile.objs index 8836761..464bc3e 100644 --- a/backends/Makefile.objs +++ b/backends/Makefile.objs @@ -1,2 +1,6 @@ common-obj-y += rng.o rng-egd.o common-obj-$(CONFIG_POSIX) += rng-random.o + +common-obj-y += msmouse.o +common-obj-$(CONFIG_BRLAPI) += baum.o +$(obj)/baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) diff --git a/hw/baum.c b/backends/baum.c similarity index 99% rename from hw/baum.c rename to backends/baum.c index 09dcb9c..37ccca8 100644 --- a/hw/baum.c +++ b/backends/baum.c @@ -24,8 +24,8 @@ #include "qemu-common.h" #include "char/char.h" #include "qemu/timer.h" -#include "usb.h" -#include "baum.h" +#include "hw/usb.h" +#include "char/baum.h" #include #include #include diff --git a/hw/msmouse.c b/backends/msmouse.c similarity index 99% rename from hw/msmouse.c rename to backends/msmouse.c index ef47aed..bf2ff2a 100644 --- a/hw/msmouse.c +++ b/backends/msmouse.c @@ -25,7 +25,7 @@ #include "qemu-common.h" #include "char/char.h" #include "ui/console.h" -#include "msmouse.h" +#include "char/msmouse.h" #define MSMOUSE_LO6(n) ((n) & 0x3f) #define MSMOUSE_HI2(n) (((n) & 0xc0) >> 6) diff --git a/hw/Makefile.objs b/hw/Makefile.objs index 447e32a..8fb0712 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -187,10 +187,9 @@ common-obj-$(CONFIG_SSI_SD) += ssi-sd.o common-obj-$(CONFIG_SD) += sd.o common-obj-y += bt.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o common-obj-y += bt-hci-csr.o -common-obj-y += msmouse.o ps2.o +common-obj-y += ps2.o common-obj-y += qdev-monitor.o common-obj-y += qdev-properties-system.o -common-obj-$(CONFIG_BRLAPI) += baum.o # xen backend driver support common-obj-$(CONFIG_XEN_BACKEND) += xen_backend.o xen_devconfig.o @@ -215,5 +214,4 @@ obj-$(CONFIG_KVM) += ivshmem.o obj-$(CONFIG_LINUX) += vfio_pci.o endif -$(obj)/baum.o: QEMU_CFLAGS += $(SDL_CFLAGS) endif diff --git a/hw/baum.h b/include/char/baum.h similarity index 100% rename from hw/baum.h rename to include/char/baum.h diff --git a/hw/msmouse.h b/include/char/msmouse.h similarity index 100% rename from hw/msmouse.h rename to include/char/msmouse.h diff --git a/qemu-char.c b/qemu-char.c index ac5d62d..3221c70 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -28,8 +28,8 @@ #include "qemu/timer.h" #include "char/char.h" #include "hw/usb.h" -#include "hw/baum.h" -#include "hw/msmouse.h" +#include "char/baum.h" +#include "char/msmouse.h" #include "qmp-commands.h" #include diff --git a/vl.c b/vl.c index 3155989..79ed0c7 100644 --- a/vl.c +++ b/vl.c @@ -119,7 +119,7 @@ int main(int argc, char **argv) #include "hw/pcmcia.h" #include "hw/pc.h" #include "hw/isa.h" -#include "hw/baum.h" +#include "char/baum.h" #include "hw/bt.h" #include "hw/watchdog.h" #include "hw/smbios.h"