1178828Sdfr/* $FreeBSD: releng/11.0/sys/dev/usb/usb_pci.h 246122 2013-01-30 15:26:04Z hselasky $ */
2178828Sdfr/*-
3178828Sdfr * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
4225778Sstas *
5233294Sstas * Redistribution and use in source and binary forms, with or without
6233294Sstas * modification, are permitted provided that the following conditions
7233294Sstas * are met:
8178828Sdfr * 1. Redistributions of source code must retain the above copyright
9178828Sdfr *    notice, this list of conditions and the following disclaimer.
10178828Sdfr * 2. Redistributions in binary form must reproduce the above copyright
11178828Sdfr *    notice, this list of conditions and the following disclaimer in the
12178828Sdfr *    documentation and/or other materials provided with the distribution.
13178828Sdfr *
14178828Sdfr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15233294Sstas * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16233294Sstas * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17233294Sstas * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18178828Sdfr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19233294Sstas * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20233294Sstas * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21178828Sdfr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22178828Sdfr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23178828Sdfr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24178828Sdfr * SUCH DAMAGE.
25178828Sdfr */
26178828Sdfr
27178828Sdfr#ifndef _USB_PCI_H_
28178828Sdfr#define	_USB_PCI_H_
29178828Sdfr
30233294Sstas/*
31233294Sstas * We don't want the following files included everywhere, that's why
32233294Sstas * they are in a separate file.
33178828Sdfr */
34178828Sdfr#ifndef USB_GLOBAL_INCLUDE_FILE
35233294Sstas#include <dev/pci/pcireg.h>
36233294Sstas#include <dev/pci/pcivar.h>
37178828Sdfr
38233294Sstas#include <sys/rman.h>
39178828Sdfr#endif
40178828Sdfr
41233294Sstas#endif					/* _USB_PCI_H_ */
42233294Sstas