From owner-svn-src-head@freebsd.org Wed Oct 7 03:33:27 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0048C9D1BC5; Wed, 7 Oct 2015 03:33:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC56115F; Wed, 7 Oct 2015 03:33:26 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t973XP42054298; Wed, 7 Oct 2015 03:33:25 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t973XPWR054297; Wed, 7 Oct 2015 03:33:25 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201510070333.t973XPWR054297@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Wed, 7 Oct 2015 03:33:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r288975 - head/sys/dev/otus X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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, 07 Oct 2015 03:33:27 -0000 Author: kevlo Date: Wed Oct 7 03:33:25 2015 New Revision: 288975 URL: https://svnweb.freebsd.org/changeset/base/288975 Log: Declare odata as a pointer type instead of a pointer to pointer. Reviewed by: adrian Modified: head/sys/dev/otus/if_otusreg.h Modified: head/sys/dev/otus/if_otusreg.h ============================================================================== --- head/sys/dev/otus/if_otusreg.h Wed Oct 7 02:13:02 2015 (r288974) +++ head/sys/dev/otus/if_otusreg.h Wed Oct 7 03:33:25 2015 (r288975) @@ -874,7 +874,7 @@ struct otus_softc; struct otus_tx_cmd { uint8_t *buf; uint16_t buflen; - void * *odata; + void *odata; uint16_t odatalen; uint16_t token; STAILQ_ENTRY(otus_tx_cmd) next_cmd;