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
|
| #ifdef HAVE_XORG_CONFIG_H
| #include <xorg-config.h>
| #endif
|
| #include "IBM.h"
|
| typedef struct {
| const char *DeviceName;
| } xf86IBMramdacInfo;
|
| extern xf86IBMramdacInfo IBMramdacDeviceInfo[];
|
| #ifdef INIT_IBM_RAMDAC_INFO
| xf86IBMramdacInfo IBMramdacDeviceInfo[] = {
| {"IBM 524"},
| {"IBM 524A"},
| {"IBM 525"},
| {"IBM 526"},
| {"IBM 526DB(DoubleBuffer)"},
| {"IBM 528"},
| {"IBM 528A"},
| {"IBM 624"},
| {"IBM 624DB(DoubleBuffer)"},
| {"IBM 640"}
| };
| #endif
|
|