1145132Sanholt/* tdfx.h -- 3dfx DRM template customization -*- linux-c -*-
2145132Sanholt * Created: Wed Feb 14 12:32:32 2001 by gareth@valinux.com
3152909Sanholt */
4152909Sanholt/*-
5145132Sanholt * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6145132Sanholt * All Rights Reserved.
7145132Sanholt *
8145132Sanholt * Permission is hereby granted, free of charge, to any person obtaining a
9145132Sanholt * copy of this software and associated documentation files (the "Software"),
10145132Sanholt * to deal in the Software without restriction, including without limitation
11145132Sanholt * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12145132Sanholt * and/or sell copies of the Software, and to permit persons to whom the
13145132Sanholt * Software is furnished to do so, subject to the following conditions:
14145132Sanholt *
15145132Sanholt * The above copyright notice and this permission notice (including the next
16145132Sanholt * paragraph) shall be included in all copies or substantial portions of the
17145132Sanholt * Software.
18145132Sanholt *
19145132Sanholt * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20145132Sanholt * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21145132Sanholt * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
22145132Sanholt * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23145132Sanholt * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24145132Sanholt * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25145132Sanholt * OTHER DEALINGS IN THE SOFTWARE.
26145132Sanholt *
27145132Sanholt * Authors:
28145132Sanholt *    Gareth Hughes <gareth@valinux.com>
29145132Sanholt */
30145132Sanholt
31152909Sanholt#include <sys/cdefs.h>
32152909Sanholt__FBSDID("$FreeBSD: releng/10.3/sys/dev/drm/tdfx_drv.h 152909 2005-11-28 23:13:57Z anholt $");
33152909Sanholt
34145132Sanholt#ifndef __TDFX_H__
35145132Sanholt#define __TDFX_H__
36145132Sanholt
37145132Sanholt/* General customization:
38145132Sanholt */
39145132Sanholt
40145132Sanholt#define DRIVER_AUTHOR		"VA Linux Systems Inc."
41145132Sanholt
42145132Sanholt#define DRIVER_NAME		"tdfx"
43145132Sanholt#define DRIVER_DESC		"3dfx Banshee/Voodoo3+"
44145132Sanholt#define DRIVER_DATE		"20010216"
45145132Sanholt
46145132Sanholt#define DRIVER_MAJOR		1
47145132Sanholt#define DRIVER_MINOR		0
48145132Sanholt#define DRIVER_PATCHLEVEL	0
49145132Sanholt
50145132Sanholt#endif
51