From patchwork Fri Nov 7 09:54:18 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sedat Dilek X-Patchwork-Id: 5251251 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id C012AC11AC for ; Fri, 7 Nov 2014 09:54:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0A4F92010C for ; Fri, 7 Nov 2014 09:54:41 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 683C620107 for ; Fri, 7 Nov 2014 09:54:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8442A6F334; Fri, 7 Nov 2014 01:54:37 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wg0-f42.google.com (mail-wg0-f42.google.com [74.125.82.42]) by gabe.freedesktop.org (Postfix) with ESMTP id 874E36F334 for ; Fri, 7 Nov 2014 01:54:35 -0800 (PST) Received: by mail-wg0-f42.google.com with SMTP id k14so3251256wgh.15 for ; Fri, 07 Nov 2014 01:54:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=cYVw42N2Avfey5Wvck7+v44VtxkpTPxn3WPMpQ6wyyQ=; b=o8qhfbKi8HXTFjT+ZDTWwOCRjc9bpkfe5oL7DGNesaL9EgtnErx1t/+OF3nfnogTiD qDrpjMtoAce6FDGlb33Gn3X5+DM1vvsfra94d9MSj0ZKVsAd5xu6cYx4wwXNMqePLPC3 vSCF/y0RUZV3UibRzPq7ty4Szw7L4bAMl1d/CLAPtdVBpkoJfnJgclMZsjTvMfHzAy7F QlaIx7BGrVhFGCfQ6nxKESZR9gukpOBUTFluq7heCHQ+/2b8epj6xVyVgJsAtzIeaG6u QuunA18QNRytdXKA7EGp5qttz+8ozzsOASfjynfcNfK021YJpk8uvPnFaRu8V8PbZwYi t8mA== X-Received: by 10.180.211.70 with SMTP id na6mr3339770wic.3.1415354074081; Fri, 07 Nov 2014 01:54:34 -0800 (PST) Received: from fambox.fambox-domain ([46.114.149.137]) by mx.google.com with ESMTPSA id da3sm11130830wjb.12.2014.11.07.01.54.32 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 07 Nov 2014 01:54:33 -0800 (PST) From: Sedat Dilek To: Chris Wilson , intel-gfx Date: Fri, 7 Nov 2014 10:54:18 +0100 Message-Id: <1415354058-27322-1-git-send-email-sedat.dilek@gmail.com> X-Mailer: git-send-email 2.1.3 Cc: Sedat Dilek Subject: [Intel-gfx] [PATCH] sna: wc-mmap: Fix warning in configure X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This fixes the following warning due to a typo: configure: WARNING: unrecognized options: --enable-wc-map Signed-off-by: Sedat Dilek --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e5877c8..328b4e9 100644 --- a/configure.ac +++ b/configure.ac @@ -723,7 +723,7 @@ if test "x$RENDERNODE" = "xyes"; then fi AC_ARG_ENABLE(wc-mmap, - AS_HELP_STRING([--enable-wc-map], + AS_HELP_STRING([--enable-wc-mmap], [Enable use of WriteCombining mmaps [default=no]]), [WC_MMAP="$enableval"], [WC_MMAP="no"])