0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef __DEVICE_CONFIG_H
0014 #define __DEVICE_CONFIG_H
0015
0016 #include <linux/types.h>
0017
0018 #define VID_TABLE_SIZE 64
0019 #define MCAST_TABLE_SIZE 64
0020 #define MCAM_SIZE 32
0021 #define VCAM_SIZE 32
0022 #define TX_QUEUE_NO 8
0023
0024 #define DEVICE_NAME "vt6655"
0025 #define DEVICE_FULL_DRV_NAM "VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver"
0026
0027 #ifndef MAJOR_VERSION
0028 #define MAJOR_VERSION 1
0029 #endif
0030
0031 #ifndef MINOR_VERSION
0032 #define MINOR_VERSION 17
0033 #endif
0034
0035 #ifndef DEVICE_VERSION
0036 #define DEVICE_VERSION "1.19.12"
0037 #endif
0038
0039 #include <linux/fs.h>
0040 #include <linux/fcntl.h>
0041
0042 #define PKT_BUF_SZ 2390
0043
0044 #endif