From patchwork Mon Aug 22 08:15:24 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Peter A. G. Crosthwaite" X-Patchwork-Id: 110868 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 71342B6F6F for ; Mon, 22 Aug 2011 18:17:06 +1000 (EST) Received: from localhost ([::1]:36539 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvPgr-0001Mw-G8 for incoming@patchwork.ozlabs.org; Mon, 22 Aug 2011 04:17:01 -0400 Received: from eggs.gnu.org ([140.186.70.92]:42066) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvPgm-0001Mn-Gi for qemu-devel@nongnu.org; Mon, 22 Aug 2011 04:16:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvPgl-0008S3-Bq for qemu-devel@nongnu.org; Mon, 22 Aug 2011 04:16:56 -0400 Received: from mail-yi0-f45.google.com ([209.85.218.45]:34398) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvPgl-0008OX-9K for qemu-devel@nongnu.org; Mon, 22 Aug 2011 04:16:55 -0400 Received: by yih10 with SMTP id 10so4059087yih.4 for ; Mon, 22 Aug 2011 01:16:53 -0700 (PDT) Received: by 10.236.177.72 with SMTP id c48mr647155yhm.79.1314001013862; Mon, 22 Aug 2011 01:16:53 -0700 (PDT) Received: from localhost ([124.148.20.9]) by mx.google.com with ESMTPS id o2sm5779981yhl.15.2011.08.22.01.16.51 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 22 Aug 2011 01:16:53 -0700 (PDT) From: "Peter A. G. Crosthwaite" To: qemu-devel@nongnu.org, edgar.iglesias@petalogix.com Date: Mon, 22 Aug 2011 18:15:24 +1000 Message-Id: <1314000925-2255-1-git-send-email-peter.crosthwaite@petalogix.com> X-Mailer: git-send-email 1.7.3.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.218.45 Cc: "Peter A. G. Crosthwaite" Subject: [Qemu-devel] [PATCH 1/2] xilinx.h: Added missing includes 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 Added some missing #includes for this file. Previously this file relied on its clients to pre-include its dependencies. Signed-off-by: Peter A. G. Crosthwaite --- hw/xilinx.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/xilinx.h b/hw/xilinx.h index 090e6f7..3a1f4c6 100644 --- a/hw/xilinx.h +++ b/hw/xilinx.h @@ -1,3 +1,5 @@ +#include "qemu-common.h" +#include "net.h" /* OPB Interrupt Controller. */ qemu_irq *microblaze_pic_init_cpu(CPUState *env);