From patchwork Sun Jul 15 20:25:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 171086 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 C4F262C00DE for ; Mon, 16 Jul 2012 05:25:15 +1000 (EST) Received: from localhost ([::1]:57049 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqURN-0005qz-TC for incoming@patchwork.ozlabs.org; Sun, 15 Jul 2012 15:25:13 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45365) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqURH-0005pJ-EH for qemu-devel@nongnu.org; Sun, 15 Jul 2012 15:25:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SqURG-0008WF-JZ for qemu-devel@nongnu.org; Sun, 15 Jul 2012 15:25:07 -0400 Received: from smtp.gentoo.org ([140.211.166.183]:56478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqURG-0008Ul-EE for qemu-devel@nongnu.org; Sun, 15 Jul 2012 15:25:06 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id B52471B4152 for ; Sun, 15 Jul 2012 19:25:04 +0000 (UTC) From: Mike Frysinger To: qemu-devel@nongnu.org Date: Sun, 15 Jul 2012 16:25:31 -0400 Message-Id: <1342383931-11594-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.7.9.7 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 140.211.166.183 Subject: [Qemu-devel] [PATCH] cpu-defs.h: pull in qemu-common.h for HOST_LONG_BITS 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 This file uses the define HOST_LONG_BITS, but doesn't explicitly include qemu-common.h for it leading to build warnings for some setups: In file included from qemu/target-bfin/cpu.h:17, from qemu/cputlb.c:21: qemu/cpu-defs.h:83:5: warning: "HOST_LONG_BITS" is not defined Signed-off-by: Mike Frysinger --- cpu-defs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cpu-defs.h b/cpu-defs.h index f49e950..0d6018d 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -28,6 +28,7 @@ #include #include #include "osdep.h" +#include "qemu-common.h" #include "qemu-queue.h" #include "targphys.h"