From owner-svn-src-head@FreeBSD.ORG Fri Feb 4 16:29:27 2011 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59B7C106564A; Fri, 4 Feb 2011 16:29:27 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id F2A7E8FC19; Fri, 4 Feb 2011 16:29:26 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id p14GN1J6002115; Fri, 4 Feb 2011 09:23:01 -0700 (MST) (envelope-from imp@bsdimp.com) Message-ID: <4D4C27E5.2020708@bsdimp.com> Date: Fri, 04 Feb 2011 09:23:01 -0700 From: Warner Losh User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.13) Gecko/20101211 Thunderbird/3.1.7 MIME-Version: 1.0 To: Bruce Cran References: <201102032026.p13KQQX2057419@svn.freebsd.org> <20110203230721.GA47981@muon.cran.org.uk> In-Reply-To: <20110203230721.GA47981@muon.cran.org.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, Adrian Chadd , src-committers@FreeBSD.org, svn-src-all@FreeBSD.org Subject: Re: svn commit: r218238 - head/sys/dev/ath X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Feb 2011 16:29:27 -0000 On 02/03/2011 16:07, Bruce Cran wrote: > On Thu, Feb 03, 2011 at 08:26:26PM +0000, Adrian Chadd wrote: >> if (ni != NULL) { >> +#if NOTYET >> /* tag AMPDU aggregates for reorder processing */ > This seems to have broken the build because NOTYET isn't defined. ANSI C states that all undefined preprocessor variables shall expand to 0. If we have a warning on that complains, we should turn it off. Warner