2 * Copyright (c) 1996, 2003 VIA Networking, Inc. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 * Purpose: Driver configuration header
27 #ifndef __DEVICE_CONFIG_H
28 #define __DEVICE_CONFIG_H
30 //#include <linux/config.h>
31 #include <linux/types.h>
33 #if !defined(__TTYPE_H__)
39 typedef __u8 UINT8, *PUINT8;
40 typedef __u16 UINT16, *PUINT16;
41 typedef __u32 UINT32, *PUINT32;
73 } version_t, *pversion_t;
80 #define TRUE (!(FALSE))
83 #define VID_TABLE_SIZE 64
84 #define MCAST_TABLE_SIZE 64
89 #define DEVICE_NAME "vt6655"
90 #define DEVICE_FULL_DRV_NAM "VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver"
93 #define MAJOR_VERSION 1
97 #define MINOR_VERSION 17
100 #ifndef DEVICE_VERSION
101 #define DEVICE_VERSION "1.19.12"
104 #include <linux/fs.h>
105 #include <linux/fcntl.h>
107 #define CONFIG_PATH "/etc/vntconfiguration.dat"
110 //Max: 2378=2312Payload + 30HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR
111 #define PKT_BUF_SZ 2390
114 #define MALLOC(x,y) kmalloc((x),(y))
115 #define FREE(x) kfree((x))
117 #define OPTION_DEFAULT { [0 ... MAX_UINTS-1] = -1}
121 typedef enum _chip_type{
123 } CHIP_TYPE, *PCHIP_TYPE;
128 #define ASSERT(x) { \
130 printk(KERN_ERR "assertion %s failed: file %s line %d\n", #x,\
131 __FUNCTION__, __LINE__);\
135 #define DBG_PORT80(value) outb(value, 0x80)
138 #define DBG_PORT80(value)