1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
4  * All rights reserved.
5  *
6  * Purpose: Driver configuration header
7  * Author: Lyndon Chen
8  *
9  * Date: Dec 17, 2002
10  *
11  */
12 
13 #ifndef __DEVICE_CONFIG_H
14 #define __DEVICE_CONFIG_H
15 
16 #include <linux/types.h>
17 
18 #define VID_TABLE_SIZE      64
19 #define MCAST_TABLE_SIZE    64
20 #define MCAM_SIZE           32
21 #define VCAM_SIZE           32
22 #define TX_QUEUE_NO         8
23 
24 #define DEVICE_NAME         "vt6655"
25 #define DEVICE_FULL_DRV_NAM "VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver"
26 
27 #ifndef MAJOR_VERSION
28 #define MAJOR_VERSION       1
29 #endif
30 
31 #ifndef MINOR_VERSION
32 #define MINOR_VERSION       17
33 #endif
34 
35 #ifndef DEVICE_VERSION
36 #define DEVICE_VERSION       "1.19.12"
37 #endif
38 
39 #include <linux/fs.h>
40 #include <linux/fcntl.h>
41 
42 #define PKT_BUF_SZ          2390
43 
44 #endif
45