summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@qca.qualcomm.com>2014-04-28 15:53:06 -0700
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-04-29 23:02:41 -0700
commit6a79ece5a67e3ec249d59af5abde44af6e8adbdf (patch)
tree61b9a26d9594179a3bf4df194f07d49d5c33c8da
parent07f09d4fbdf93f62fd636231447f47f6a2852073 (diff)
wlan: qcacld: Remove obsolete file wlan_hdd_version.h
The header file CORE/HDD/inc/wlan_hdd_version.h is not included by any other files, and the content of this file looks like it was never designed to be used on Linux, so remove the file. Change-Id: I7d70e999d3d3534ea22b31805d4bc8e0cd9453ff CRs-fixed: 656442
-rw-r--r--CORE/HDD/inc/wlan_hdd_version.h96
1 files changed, 0 insertions, 96 deletions
diff --git a/CORE/HDD/inc/wlan_hdd_version.h b/CORE/HDD/inc/wlan_hdd_version.h
deleted file mode 100644
index 3c19cc44988a..000000000000
--- a/CORE/HDD/inc/wlan_hdd_version.h
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * Copyright (c) 2014 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
-
-/*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
-
-//==================================================================
-//
-// File: hdd_Version.h
-//
-// Description: Miniport driver version information
-//
-// Author: Larry Cawley
-//
-////
-//===================================================================
-#if !defined( __hddVersion_h__ )
-#define __hddVersion_h__
-
-// force string expansion from chars
-#define strEXPAND(x) #x
-#define strSTRING(x) strEXPAND(x)
-#define strVERSION( _mj, _mn, _sfx, _build ) strSTRING(_mj) "." strSTRING(_mn) "." strSTRING(_sfx) "." strSTRING(_build)
-
-
-#if defined( BLD_REL )
-#define HDD_DRIVER_MAJOR_VERSION BLD_REL
-#else
-#define HDD_DRIVER_MAJOR_VERSION 0
-#endif
-
-#if defined( BLD_VER )
-#define HDD_DRIVER_MINOR_VERSION BLD_VER
-#else
-#define HDD_DRIVER_MINOR_VERSION 0
-#endif
-
-#if defined( BLD_SFX )
-#define HDD_DRIVER_SUFFIX BLD_SFX
-#else
-#define HDD_DRIVER_SUFFIX 0
-#endif
-
-#if defined( BLD_NUM )
-#define HDD_DRIVER_BUILD BLD_NUM
-#else
-#define HDD_DRIVER_BUILD 0000
-#endif
-#define HDD_BUILD_DATETIME __DATE__ " " __TIME__
-
-#define HDD_DRIVER_VERSION WNI_DRIVER_MAJOR_VERSION,WNI_DRIVER_MINOR_VERSION
-
-#define HDD_DRIVER_VERSION_STR strVERSION( WNI_DRIVER_MAJOR_VERSION, WNI_DRIVER_MINOR_VERSION, WNI_DRIVER_SUFFIX, WNI_DRIVER_BUILD )
-
-#define HDD_COMPANYNAME_FULL "QUALCOMM, Inc."
-#define HDD_DRIVER_DESCRIPTION "QUALCOMM Gen6 802.11n Wireless Adapter"
-#define OEM_FILEDESCRIPTION_STR ANI_DRIVER_DESCRIPTION
-
-#define OEM_COMPANYNAME_STR ANI_COMPANYNAME_FULL
-
-#define OEM_INTERNALNAME_STR "WLAN_QCT_DRV.dll"
-#define OEM_INTERNALNAME_STR2 "WLAN_QCT_DRV.dll"
-#define OEM_ORIGINALFILENAME_STR "WLAN_QCT_DRV.dll"
-
-#define OEM_LEGALCOPYRIGHT_YEARS "2008"
-#define OEM_LEGALCOPYRIGHT_STR "Copyright \251 " OEM_COMPANYNAME_STR "," OEM_LEGALCOPYRIGHT_YEARS
-#define OEM_PRODUCTNAME_STR HDD_DRIVER_DESCRIPTION
-
-#define OEM_PRODUCTVERSION HDD_DRIVER_VERSION
-#define OEM_FILEVERSION_STR HDD_DRIVER_VERSION_STR
-#define OEM_FILEVERSION HDD_DRIVER_MAJOR_VERSION,HDD_DRIVER_MINOR_VERSION,HDD_DRIVER_SUFFIX,HDD_DRIVER_BUILD
-#define OEM_PRODUCTVERSION_STR HDD_DRIVER_VERSION_STR
-
-
-#endif // __hddVersion_h__