1
2
3
4
5
6
7
8
9
10
11
12
13
14 #ifndef __DEVICE_CONFIG_H
15 #define __DEVICE_CONFIG_H
16
17 #include <linux/types.h>
18
19 #define VID_TABLE_SIZE 64
20 #define MCAST_TABLE_SIZE 64
21 #define MCAM_SIZE 32
22 #define VCAM_SIZE 32
23 #define TX_QUEUE_NO 8
24
25 #define DEVICE_NAME "vt6655"
26 #define DEVICE_FULL_DRV_NAM "VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver"
27
28 #ifndef MAJOR_VERSION
29 #define MAJOR_VERSION 1
30 #endif
31
32 #ifndef MINOR_VERSION
33 #define MINOR_VERSION 17
34 #endif
35
36 #ifndef DEVICE_VERSION
37 #define DEVICE_VERSION "1.19.12"
38 #endif
39
40 #include <linux/fs.h>
41 #include <linux/fcntl.h>
42 #ifndef CONFIG_PATH
43 #define CONFIG_PATH "/etc/vntconfiguration.dat"
44 #endif
45
46 #define PKT_BUF_SZ 2390
47
48 #endif