1266881Shselasky/* $FreeBSD: stable/11/stand/usb/storage/umass_common.h 266886 2014-05-30 14:05:31Z hselasky $ */
2266881Shselasky/*-
3266881Shselasky * Copyright (c) 2014 Hans Petter Selasky <hselasky@FreeBSD.org>
4266881Shselasky * All rights reserved.
5266881Shselasky *
6266881Shselasky * This software was developed by SRI International and the University of
7266881Shselasky * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237)
8266881Shselasky * ("CTSRD"), as part of the DARPA CRASH research programme.
9266881Shselasky *
10266881Shselasky * Redistribution and use in source and binary forms, with or without
11266881Shselasky * modification, are permitted provided that the following conditions
12266881Shselasky * are met:
13266881Shselasky * 1. Redistributions of source code must retain the above copyright
14266881Shselasky *    notice, this list of conditions and the following disclaimer.
15266881Shselasky * 2. Redistributions in binary form must reproduce the above copyright
16266881Shselasky *    notice, this list of conditions and the following disclaimer in the
17266881Shselasky *    documentation and/or other materials provided with the distribution.
18266881Shselasky *
19266881Shselasky * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20266881Shselasky * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21266881Shselasky * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22266881Shselasky * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23266881Shselasky * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24266881Shselasky * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25266881Shselasky * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26266881Shselasky * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27266881Shselasky * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28266881Shselasky * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29266881Shselasky * SUCH DAMAGE.
30266881Shselasky */
31266881Shselasky
32266881Shselasky#ifndef _UMASS_COMMON_H_
33266881Shselasky#define	_UMASS_COMMON_H_
34266881Shselasky
35266886Shselaskystruct usb_attach_arg;
36266886Shselaskystruct devsw;
37266886Shselasky
38266881Shselaskyextern struct usb_attach_arg umass_uaa;
39266886Shselaskyextern struct devsw umass_disk;
40266881Shselasky
41266881Shselasky#endif			/* _UMASS_COMMON_H_ */
42