From patchwork Fri Jan 4 13:55:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 209458 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 85D6A2C0084 for ; Sat, 5 Jan 2013 00:56:35 +1100 (EST) Received: from localhost ([::1]:60845 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr7lB-0001p4-Nd for incoming@patchwork.ozlabs.org; Fri, 04 Jan 2013 08:56:33 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr7ks-0001dK-19 for qemu-devel@nongnu.org; Fri, 04 Jan 2013 08:56:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tr7kn-0007Qp-OI for qemu-devel@nongnu.org; Fri, 04 Jan 2013 08:56:13 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49371) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr7kn-0007Qf-H1 for qemu-devel@nongnu.org; Fri, 04 Jan 2013 08:56:09 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r04Du8wG022175 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 4 Jan 2013 08:56:08 -0500 Received: from localhost (ovpn-112-35.ams2.redhat.com [10.36.112.35]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r04Du7DX015180; Fri, 4 Jan 2013 08:56:07 -0500 From: Stefan Hajnoczi To: Date: Fri, 4 Jan 2013 14:55:46 +0100 Message-Id: <1357307750-1966-3-git-send-email-stefanha@redhat.com> In-Reply-To: <1357307750-1966-1-git-send-email-stefanha@redhat.com> References: <1357307750-1966-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Stefan Weil , Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 2/6] pseries: Remove unneeded include statement (fixes MinGW builds) 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 From: Stefan Weil sys/mman.h is not needed (tested on Linux) and unavailable for MinGW, so remove it. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/spapr_nvram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/spapr_nvram.c b/hw/spapr_nvram.c index f20f6b4..680cdba 100644 --- a/hw/spapr_nvram.c +++ b/hw/spapr_nvram.c @@ -21,7 +21,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#include + #include #include "sysemu/device_tree.h"