blob: e63619e3a67c3a6ada820f54882a0d5a8433b06d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/shared/xf86Axp.h,v 1.3 2001/02/15 19:46:03 eich Exp $ */
#ifndef _XF86_AXP_H_
#define _XF86_AXP_H_
typedef enum {
SYS_NONE,
TSUNAMI,
LCA,
APECS,
T2,
T2_GAMMA,
CIA,
MCPCIA,
JENSEN,
POLARIS,
PYXIS,
PYXIS_CIA,
IRONGATE
} axpDevice;
typedef struct {
axpDevice id;
unsigned long hae_thresh;
unsigned long hae_mask;
unsigned long size;
} axpParams;
extern axpParams xf86AXPParams[];
#endif
|