Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0+ */
0002 /*
0003  * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
0004  * All rights reserved.
0005  *
0006  * Purpose: Driver configuration header
0007  * Author: Lyndon Chen
0008  *
0009  * Date: Dec 17, 2002
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