1178173Simp/*-
2178173Simp * Copyright (c) 2005 Olivier Houchard.  All rights reserved.
3178173Simp *
4178173Simp * Redistribution and use in source and binary forms, with or without
5178173Simp * modification, are permitted provided that the following conditions
6178173Simp * are met:
7178173Simp * 1. Redistributions of source code must retain the above copyright
8178173Simp *    notice, this list of conditions and the following disclaimer.
9178173Simp * 2. Redistributions in binary form must reproduce the above copyright
10178173Simp *    notice, this list of conditions and the following disclaimer in the
11178173Simp *    documentation and/or other materials provided with the distribution.
12178173Simp *
13178173Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14178173Simp * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15178173Simp * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16178173Simp * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17178173Simp * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18178173Simp * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19178173Simp * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20178173Simp * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21178173Simp * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22178173Simp * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23178173Simp */
24178173Simp
25178173Simp/* $FreeBSD$ */
26178173Simp
27178173Simp#ifndef _GTVAR_H_
28178173Simp#define _GTVAR_H_
29178173Simp
30178173Simp#include <sys/rman.h>
31178173Simp
32178173Simpstruct gt_softc {
33178173Simp	device_t dev;
34178173Simp};
35178173Simp
36178173Simp#endif /* _GTVAR_H_ */
37