From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41284) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bX91q-0007AN-9u for qemu-devel@nongnu.org; Tue, 09 Aug 2016 11:33:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bX91n-0005sA-7U for qemu-devel@nongnu.org; Tue, 09 Aug 2016 11:33:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50648) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bX91n-0005rx-2p for qemu-devel@nongnu.org; Tue, 09 Aug 2016 11:33:15 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AE6717F7A7 for ; Tue, 9 Aug 2016 15:33:14 +0000 (UTC) From: "Daniel P. Berrange" Date: Tue, 9 Aug 2016 16:32:02 +0100 Message-Id: <1470756748-18933-35-git-send-email-berrange@redhat.com> In-Reply-To: <1470756748-18933-1-git-send-email-berrange@redhat.com> References: <1470756748-18933-1-git-send-email-berrange@redhat.com> Subject: [Qemu-devel] [PATCH for-2.8 v1 34/60] trace: switch hw/input/ directory to modular trace.h file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Hajnoczi , "Daniel P. Berrange" Switch files in the hw/input/ directory to include the hw/input/trace.h file instead of the global trace.h file. Signed-off-by: Daniel P. Berrange --- Makefile.objs | 2 +- hw/input/Makefile.objs | 3 +++ hw/input/hid.c | 2 +- hw/input/milkymist-softusb.c | 2 +- hw/input/ps2.c | 2 +- hw/input/virtio-input.c | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index b3978f4..49cc98c 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -136,7 +136,7 @@ trace-events-subdirs += hw/usb trace-events-subdirs += hw/scsi trace-events-subdirs += hw/nvram trace-events-subdirs += hw/display -trace-events-y += hw/input/trace-events +trace-events-subdirs += hw/input trace-events-y += hw/timer/trace-events trace-events-y += hw/dma/trace-events trace-events-y += hw/sparc/trace-events diff --git a/hw/input/Makefile.objs b/hw/input/Makefile.objs index 7715d72..fc40638 100644 --- a/hw/input/Makefile.objs +++ b/hw/input/Makefile.objs @@ -17,3 +17,6 @@ endif obj-$(CONFIG_MILKYMIST) += milkymist-softusb.o obj-$(CONFIG_PXA2XX) += pxa2xx_keypad.o obj-$(CONFIG_TSC210X) += tsc210x.o + +trace-obj-y += trace.o +trace-obj-$(CONFIG_TRACE_DTRACE) += trace-dtrace.o diff --git a/hw/input/hid.c b/hw/input/hid.c index 5e2850e..dd9c13a 100644 --- a/hw/input/hid.c +++ b/hw/input/hid.c @@ -27,7 +27,7 @@ #include "ui/console.h" #include "qemu/timer.h" #include "hw/input/hid.h" -#include "trace.h" +#include "hw/input/trace.h" #define HID_USAGE_ERROR_ROLLOVER 0x01 #define HID_USAGE_POSTFAIL 0x02 diff --git a/hw/input/milkymist-softusb.c b/hw/input/milkymist-softusb.c index 40dfca1..41f2211 100644 --- a/hw/input/milkymist-softusb.c +++ b/hw/input/milkymist-softusb.c @@ -25,7 +25,7 @@ #include "qapi/error.h" #include "hw/hw.h" #include "hw/sysbus.h" -#include "trace.h" +#include "hw/input/trace.h" #include "ui/console.h" #include "hw/input/hid.h" #include "qemu/error-report.h" diff --git a/hw/input/ps2.c b/hw/input/ps2.c index a8aa36f..c57e117 100644 --- a/hw/input/ps2.c +++ b/hw/input/ps2.c @@ -28,7 +28,7 @@ #include "ui/input.h" #include "sysemu/sysemu.h" -#include "trace.h" +#include "hw/input/trace.h" /* debug PC keyboard */ //#define DEBUG_KBD diff --git a/hw/input/virtio-input.c b/hw/input/virtio-input.c index ccdf730..5210f8b 100644 --- a/hw/input/virtio-input.c +++ b/hw/input/virtio-input.c @@ -7,7 +7,7 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "qemu/iov.h" -#include "trace.h" +#include "hw/input/trace.h" #include "hw/qdev.h" #include "hw/virtio/virtio.h" -- 2.7.4