1*afd90af8SLee Jones /* radeon_ttm.h -- Private header for radeon driver -*- linux-c -*-
2*afd90af8SLee Jones  *
3*afd90af8SLee Jones  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
4*afd90af8SLee Jones  * Copyright 2000 VA Linux Systems, Inc., Fremont, California.
5*afd90af8SLee Jones  * All rights reserved.
6*afd90af8SLee Jones  *
7*afd90af8SLee Jones  * Permission is hereby granted, free of charge, to any person obtaining a
8*afd90af8SLee Jones  * copy of this software and associated documentation files (the "Software"),
9*afd90af8SLee Jones  * to deal in the Software without restriction, including without limitation
10*afd90af8SLee Jones  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11*afd90af8SLee Jones  * and/or sell copies of the Software, and to permit persons to whom the
12*afd90af8SLee Jones  * Software is furnished to do so, subject to the following conditions:
13*afd90af8SLee Jones  *
14*afd90af8SLee Jones  * The above copyright notice and this permission notice (including the next
15*afd90af8SLee Jones  * paragraph) shall be included in all copies or substantial portions of the
16*afd90af8SLee Jones  * Software.
17*afd90af8SLee Jones  *
18*afd90af8SLee Jones  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19*afd90af8SLee Jones  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20*afd90af8SLee Jones  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
21*afd90af8SLee Jones  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22*afd90af8SLee Jones  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23*afd90af8SLee Jones  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24*afd90af8SLee Jones  * DEALINGS IN THE SOFTWARE.
25*afd90af8SLee Jones  *
26*afd90af8SLee Jones  */
27*afd90af8SLee Jones 
28*afd90af8SLee Jones #ifndef __RADEON_TTM_H__
29*afd90af8SLee Jones #define __RADEON_TTM_H__
30*afd90af8SLee Jones 
31*afd90af8SLee Jones struct radeon_device;
32*afd90af8SLee Jones 
33*afd90af8SLee Jones int radeon_ttm_init(struct radeon_device *rdev);
34*afd90af8SLee Jones void radeon_ttm_fini(struct radeon_device *rdev);
35*afd90af8SLee Jones 
36*afd90af8SLee Jones #endif				/* __RADEON_TTM_H__ */
37