From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOptJ-0006lY-JN for qemu-devel@nongnu.org; Thu, 18 Oct 2012 09:12:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TOpt9-0002JJ-Uj for qemu-devel@nongnu.org; Thu, 18 Oct 2012 09:12:01 -0400 Received: from 38.0.169.217.in-addr.arpa ([217.169.0.38]:38001 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOpt9-0002Gw-PJ for qemu-devel@nongnu.org; Thu, 18 Oct 2012 09:11:51 -0400 From: Peter Maydell Date: Thu, 18 Oct 2012 14:11:36 +0100 Message-Id: <1350565902-23940-3-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1350565902-23940-1-git-send-email-peter.maydell@linaro.org> References: <1350565902-23940-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH v2 2/8] hw/hw.h: Add include of qemu-log.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , patches@linaro.org Add an include of qemu-log.h to hw.h, so that device model code has access to these logging functions without the need to directly include qemu-log.h. Signed-off-by: Peter Maydell --- hw/hw.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/hw.h b/hw/hw.h index 16101de..b337ee3 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -12,6 +12,7 @@ #include "irq.h" #include "qemu-file.h" #include "vmstate.h" +#include "qemu-log.h" #ifdef NEED_CPU_H #if TARGET_LONG_BITS == 64 -- 1.7.9.5