| .. | .. |
|---|
| 1 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|
| 2 | 2 | /* |
|---|
| 3 | | - * Copyright (C) 1999-2019, Broadcom Corporation |
|---|
| 4 | | - * |
|---|
| 5 | | - * Unless you and Broadcom execute a separate written software license |
|---|
| 6 | | - * agreement governing use of this software, this software is licensed to you |
|---|
| 7 | | - * under the terms of the GNU General Public License version 2 (the "GPL"), |
|---|
| 8 | | - * available at http://www.broadcom.com/licenses/GPLv2.php, with the |
|---|
| 9 | | - * following added to such license: |
|---|
| 10 | | - * |
|---|
| 11 | | - * As a special exception, the copyright holders of this software give you |
|---|
| 12 | | - * permission to link this software with independent modules, and to copy and |
|---|
| 13 | | - * distribute the resulting executable under terms of your choice, provided that |
|---|
| 14 | | - * you also meet, for each linked independent module, the terms and conditions of |
|---|
| 15 | | - * the license of that module. An independent module is a module which is not |
|---|
| 16 | | - * derived from this software. The special exception does not apply to any |
|---|
| 17 | | - * modifications of the software. |
|---|
| 18 | | - * |
|---|
| 19 | | - * Notwithstanding the above, under no circumstances may you combine this |
|---|
| 20 | | - * software in any way with any other Broadcom software provided under a license |
|---|
| 21 | | - * other than the GPL, without Broadcom's express prior written consent. |
|---|
| 3 | + * $ Copyright Open Broadcom Corporation $ |
|---|
| 22 | 4 | * |
|---|
| 23 | 5 | * |
|---|
| 24 | 6 | * <<Broadcom-WL-IPTag/Open:>> |
|---|
| 25 | 7 | * |
|---|
| 26 | | - * $Id: epivers.h.in,v 13.33 2010-09-08 22:08:53 $ |
|---|
| 8 | + * $Id: epivers.h.in 596126 2015-10-29 19:53:48Z stafford $ |
|---|
| 27 | 9 | * |
|---|
| 28 | 10 | */ |
|---|
| 29 | 11 | |
|---|
| 30 | 12 | #ifndef _epivers_h_ |
|---|
| 31 | 13 | #define _epivers_h_ |
|---|
| 32 | 14 | |
|---|
| 33 | | -#define EPI_MAJOR_VERSION 1 |
|---|
| 15 | +#define EPI_MAJOR_VERSION 100 |
|---|
| 34 | 16 | |
|---|
| 35 | | -#define EPI_MINOR_VERSION 363 |
|---|
| 17 | +#define EPI_MINOR_VERSION 10 |
|---|
| 36 | 18 | |
|---|
| 37 | | -#define EPI_RC_NUMBER 125 |
|---|
| 19 | +#define EPI_RC_NUMBER 80 |
|---|
| 38 | 20 | |
|---|
| 39 | | -#define EPI_INCREMENTAL_NUMBER 19 |
|---|
| 21 | +#define EPI_INCREMENTAL_NUMBER 0 |
|---|
| 40 | 22 | |
|---|
| 41 | | -#define EPI_BUILD_NUMBER 0 |
|---|
| 23 | +#define EPI_BUILD_NUMBER 1 |
|---|
| 42 | 24 | |
|---|
| 43 | | -#define EPI_VERSION 1, 363, 125, 19 |
|---|
| 25 | +#define EPI_VERSION 100, 10, 80, 0 |
|---|
| 44 | 26 | |
|---|
| 45 | | -#define EPI_VERSION_NUM 0x0116b7d1 |
|---|
| 27 | +#define EPI_VERSION_NUM 0x640a5000 |
|---|
| 46 | 28 | |
|---|
| 47 | | -#define EPI_VERSION_DEV 1.363.125 |
|---|
| 29 | +#define EPI_VERSION_DEV 100.10.80 |
|---|
| 48 | 30 | |
|---|
| 49 | 31 | /* Driver Version String, ASCII, 32 chars max */ |
|---|
| 50 | | -#define EPI_VERSION_STR "1.363.125.19 (r)" |
|---|
| 32 | +#ifdef BCMINTERNAL |
|---|
| 33 | +#define EPI_VERSION_STR "100.10.80 ( BCMINT)" |
|---|
| 34 | +#else |
|---|
| 35 | +#ifdef WLTEST |
|---|
| 36 | +#define EPI_VERSION_STR "100.10.80 ( WLTEST)" |
|---|
| 37 | +#else |
|---|
| 38 | +#define EPI_VERSION_STR "100.10.80 ()" |
|---|
| 39 | +#endif |
|---|
| 40 | +#endif /* BCMINTERNAL */ |
|---|
| 51 | 41 | |
|---|
| 52 | 42 | #endif /* _epivers_h_ */ |
|---|