From owner-svn-src-head@FreeBSD.ORG Wed Apr 22 17:08:09 2009 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 AFFA510657DF; Wed, 22 Apr 2009 17:08:07 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 813118FC20; Wed, 22 Apr 2009 17:08:07 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n3MH87gD062724; Wed, 22 Apr 2009 17:08:07 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n3MH87Ua062721; Wed, 22 Apr 2009 17:08:07 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200904221708.n3MH87Ua062721@svn.freebsd.org> From: Andrew Thompson Date: Wed, 22 Apr 2009 17:08:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r191399 - head/sys/dev/usb/controller 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: Wed, 22 Apr 2009 17:08:11 -0000 Author: thompsa Date: Wed Apr 22 17:08:07 2009 New Revision: 191399 URL: http://svn.freebsd.org/changeset/base/191399 Log: MFp4 //depot/projects/usb@160678 Remove unused field. Submitted by: Hans Petter Selasky Modified: head/sys/dev/usb/controller/at91dci.h head/sys/dev/usb/controller/atmegadci.h head/sys/dev/usb/controller/uss820dci.h Modified: head/sys/dev/usb/controller/at91dci.h ============================================================================== --- head/sys/dev/usb/controller/at91dci.h Wed Apr 22 17:08:04 2009 (r191398) +++ head/sys/dev/usb/controller/at91dci.h Wed Apr 22 17:08:07 2009 (r191399) @@ -203,7 +203,6 @@ struct at91dci_flags { struct at91dci_softc { struct usb2_bus sc_bus; union at91dci_hub_temp sc_hub_temp; - LIST_HEAD(, usb2_xfer) sc_interrupt_list_head; struct usb2_device *sc_devices[AT91_MAX_DEVICES]; struct resource *sc_io_res; Modified: head/sys/dev/usb/controller/atmegadci.h ============================================================================== --- head/sys/dev/usb/controller/atmegadci.h Wed Apr 22 17:08:04 2009 (r191398) +++ head/sys/dev/usb/controller/atmegadci.h Wed Apr 22 17:08:07 2009 (r191399) @@ -236,7 +236,6 @@ struct atmegadci_flags { struct atmegadci_softc { struct usb2_bus sc_bus; union atmegadci_hub_temp sc_hub_temp; - LIST_HEAD(, usb2_xfer) sc_interrupt_list_head; /* must be set by by the bus interface layer */ atmegadci_clocks_t *sc_clocks_on; Modified: head/sys/dev/usb/controller/uss820dci.h ============================================================================== --- head/sys/dev/usb/controller/uss820dci.h Wed Apr 22 17:08:04 2009 (r191398) +++ head/sys/dev/usb/controller/uss820dci.h Wed Apr 22 17:08:07 2009 (r191399) @@ -344,7 +344,6 @@ struct uss820_flags { struct uss820dci_softc { struct usb2_bus sc_bus; union uss820_hub_temp sc_hub_temp; - LIST_HEAD(, usb2_xfer) sc_interrupt_list_head; struct usb2_device *sc_devices[USS820_MAX_DEVICES]; struct resource *sc_io_res;