From owner-svn-src-head@FreeBSD.ORG Wed Jun 3 15:22:53 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8115FB3; Wed, 3 Jun 2015 15:22:53 +0000 (UTC) (envelope-from araujobsdport@gmail.com) Received: from mail-ob0-x231.google.com (mail-ob0-x231.google.com [IPv6:2607:f8b0:4003:c01::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C11013B6; Wed, 3 Jun 2015 15:22:53 +0000 (UTC) (envelope-from araujobsdport@gmail.com) Received: by objn8 with SMTP id n8so10441571obj.3; Wed, 03 Jun 2015 08:22:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=ytuzVsw2rYQzdi+EOSKwUbrbnOUbWJ1pp2mdDt1YgSk=; b=UdE0bQ3syiJLLhtw2B0KXh5Yj6IPkkYX85UQ+zvfNYMaaqm8iGxC4LqVCKom1Gus66 ldExNQlYvcmTigS8hjkzWEnoW8N3VNbdbpzznq2p/foByddi3K551f3GZv9i7B7KuWzq e2GRGKRL0SLQb7Pja1MdoKBLsm5cjCiyTeYjvRrcEPrWkhWhHphAe/PWWrosEzluv+wJ kbXCTkeLe2DhgJa9lrNirhUN1xxkLpLqd44nrDPtMK/0OWJ92j4h+wX/BlPQjcIybyFV uD1S5jRAy8QzHW19yNKCcfjbccqnJTLmbtgVoH1iV+TS2wpNhUC7x8AzDtFX9MCapLJm OXLQ== MIME-Version: 1.0 X-Received: by 10.182.91.35 with SMTP id cb3mr28250559obb.87.1433344972817; Wed, 03 Jun 2015 08:22:52 -0700 (PDT) Received: by 10.202.11.193 with HTTP; Wed, 3 Jun 2015 08:22:52 -0700 (PDT) Received: by 10.202.11.193 with HTTP; Wed, 3 Jun 2015 08:22:52 -0700 (PDT) Reply-To: araujo@FreeBSD.org In-Reply-To: <201506031518.t53FIWXT006071@svn.freebsd.org> References: <201506031518.t53FIWXT006071@svn.freebsd.org> Date: Wed, 3 Jun 2015 23:22:52 +0800 Message-ID: Subject: Re: svn commit: r283949 - head/sys/dev/dwc From: Marcelo Araujo To: Luiz Otavio O Souza Cc: svn-src-head@freebsd.org, src-committers@freebsd.org, svn-src-all@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 03 Jun 2015 15:22:53 -0000 Thanks Luiz, and sorry the email that I sent in Portuguese, that one should be addressed only to you. Best, On Jun 3, 2015 11:18 PM, "Luiz Otavio O Souza" wrote: > Author: loos > Date: Wed Jun 3 15:18:32 2015 > New Revision: 283949 > URL: https://svnweb.freebsd.org/changeset/base/283949 > > Log: > Fix wrong variable name in the previous commit. > > Pointy hat to: loos > Reported by: araujo > > Modified: > head/sys/dev/dwc/if_dwc.c > > Modified: head/sys/dev/dwc/if_dwc.c > > ============================================================================== > --- head/sys/dev/dwc/if_dwc.c Wed Jun 3 14:48:03 2015 (r283948) > +++ head/sys/dev/dwc/if_dwc.c Wed Jun 3 15:18:32 2015 (r283949) > @@ -745,7 +745,7 @@ dwc_txfinish_locked(struct dwc_softc *sc > > DWC_ASSERT_LOCKED(sc); > > - fp = sc->ifp; > + ifp = sc->ifp; > while (sc->tx_idx_tail != sc->tx_idx_head) { > desc = &sc->txdesc_ring[sc->tx_idx_tail]; > if ((desc->tdes0 & DDESC_TDES0_OWN) != 0) > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org" >