1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/******************************************************************************/
/* */
/* Broadcom BCM5700 Linux Network Driver, Copyright (c) 2000 Broadcom */
/* Corporation. */
/* All rights reserved. */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation, located in the file LICENSE. */
/* */
/* History: */
/* 02/25/00 Hav Khauv Initial version. */
/******************************************************************************/
#ifndef LMCFG_H
#define LMCFG_H
/******************************************************************************/
/* Configurable constants */
/******************************************************************************/
#define LM_MAJOR_VER 1
#define LM_MINOR_VER 0
#define LM_SHORT_COMPANY_NAME_STR "Broadcom"
#define LM_LONG_COMPANY_NAME_STR "Broadcom Corporation"
#define LM_LONG_COPYRIGHT_STR "Copyright \251 2000 Broadcom Corporation. All rights reserved."
#define LM_SHORT_COPYRIGHT_STR "Copyright \251 2000 Broadcom Corporation."
#define LM_DRV_PRODUCT_NAME_STR "Gigabit Ethernet Driver"
#endif /* LMCFG_H */
|