From owner-svn-src-all@FreeBSD.ORG Fri May 30 14:05:31 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6B67D6F; Fri, 30 May 2014 14:05:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 A3CBB2979; Fri, 30 May 2014 14:05:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UE5VRw080829; Fri, 30 May 2014 14:05:31 GMT (envelope-from hselasky@svn.freebsd.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4UE5VZo080828; Fri, 30 May 2014 14:05:31 GMT (envelope-from hselasky@svn.freebsd.org) Message-Id: <201405301405.s4UE5VZo080828@svn.freebsd.org> From: Hans Petter Selasky Date: Fri, 30 May 2014 14:05:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r266886 - head/sys/boot/usb/storage X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 14:05:31 -0000 Author: hselasky Date: Fri May 30 14:05:31 2014 New Revision: 266886 URL: http://svnweb.freebsd.org/changeset/base/266886 Log: Export structure(s) properly. Sponsored by: DARPA, AFRL Modified: head/sys/boot/usb/storage/umass_common.h Modified: head/sys/boot/usb/storage/umass_common.h ============================================================================== --- head/sys/boot/usb/storage/umass_common.h Fri May 30 13:53:37 2014 (r266885) +++ head/sys/boot/usb/storage/umass_common.h Fri May 30 14:05:31 2014 (r266886) @@ -32,6 +32,10 @@ #ifndef _UMASS_COMMON_H_ #define _UMASS_COMMON_H_ +struct usb_attach_arg; +struct devsw; + extern struct usb_attach_arg umass_uaa; +extern struct devsw umass_disk; #endif /* _UMASS_COMMON_H_ */