1255083Sgonzo/*-
2255083Sgonzo * Copyright (c) 2009, Oleksandr Tymoshenko <gonzo@FreeBSD.org>
3255083Sgonzo * All rights reserved.
4255083Sgonzo *
5255083Sgonzo * Redistribution and use in source and binary forms, with or without
6255083Sgonzo * modification, are permitted provided that the following conditions
7255083Sgonzo * are met:
8255083Sgonzo * 1. Redistributions of source code must retain the above copyright
9255083Sgonzo *    notice unmodified, this list of conditions, and the following
10255083Sgonzo *    disclaimer.
11255083Sgonzo * 2. Redistributions in binary form must reproduce the above copyright
12255083Sgonzo *    notice, this list of conditions and the following disclaimer in the
13255083Sgonzo *    documentation and/or other materials provided with the distribution.
14255083Sgonzo *
15255083Sgonzo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16255083Sgonzo * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17255083Sgonzo * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18255083Sgonzo * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19255083Sgonzo * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20255083Sgonzo * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21255083Sgonzo * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22255083Sgonzo * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23255083Sgonzo * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24255083Sgonzo * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25255083Sgonzo * SUCH DAMAGE.
26255083Sgonzo *
27255083Sgonzo * $FreeBSD$
28255083Sgonzo *
29255083Sgonzo */
30255083Sgonzo
31255083Sgonzo#ifndef __GT_PCI_BUS_SPACEH__
32255083Sgonzo#define __GT_PCI_BUS_SPACEH__
33255083Sgonzo
34255083Sgonzoextern bus_space_tag_t gt_pci_bus_space;
35255083Sgonzo
36255083Sgonzo#endif /* __GT_PCI_BUS_SPACEH__ */
37