summaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-12-18 17:54:02 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-12-18 17:54:02 +0000
commitb86e82e5cc54f03f9207411197e15f431d2173ff (patch)
tree4dd3c3dbab10b500f140c685de43ee19057b2d5f /target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h
parentdb831511d2091907eef52519ebcc47f54cfd6d33 (diff)
downloadmaster-31e0f0ae-b86e82e5cc54f03f9207411197e15f431d2173ff.tar.gz
master-31e0f0ae-b86e82e5cc54f03f9207411197e15f431d2173ff.tar.bz2
master-31e0f0ae-b86e82e5cc54f03f9207411197e15f431d2173ff.zip
s3c2442: R.I.P.
It is broken and it is not maintained by anyone since long time. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34767
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h')
-rw-r--r--target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h b/target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h
deleted file mode 100644
index d5b2a20b04..0000000000
--- a/target/linux/s3c24xx/files-2.6.30/drivers/ar6000/include/AR6K_version.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#define __VER_MAJOR_ 2
-#define __VER_MINOR_ 0
-#define __VER_PATCH_ 0
-
-
-/*
- * Copyright (c) 2004-2007 Atheros Communications Inc.
- * All rights reserved.
- *
- * $ATH_LICENSE_HOSTSDK0_C$
- *
- * The makear6ksdk script (used for release builds) modifies the following line.
- */
-#define __BUILD_NUMBER_ 18
-
-
-/* Format of the version number. */
-#define VER_MAJOR_BIT_OFFSET 28
-#define VER_MINOR_BIT_OFFSET 24
-#define VER_PATCH_BIT_OFFSET 16
-#define VER_BUILD_NUM_BIT_OFFSET 0
-
-
-/*
- * The version has the following format:
- * Bits 28-31: Major version
- * Bits 24-27: Minor version
- * Bits 16-23: Patch version
- * Bits 0-15: Build number (automatically generated during build process )
- * E.g. Build 1.1.3.7 would be represented as 0x11030007.
- *
- * DO NOT split the following macro into multiple lines as this may confuse the build scripts.
- */
-#define AR6K_SW_VERSION ( ( __VER_MAJOR_ << VER_MAJOR_BIT_OFFSET ) + ( __VER_MINOR_ << VER_MINOR_BIT_OFFSET ) + ( __VER_PATCH_ << VER_PATCH_BIT_OFFSET ) + ( __BUILD_NUMBER_ << VER_BUILD_NUM_BIT_OFFSET ) )
-
-