linux/drivers/staging/vt6655/device_cfg.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
   4 * All rights reserved.
   5 *
   6 * File: device_cfg.h
   7 *
   8 * Purpose: Driver configuration header
   9 * Author: Lyndon Chen
  10 *
  11 * Date: Dec 17, 2002
  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
  49