Merge branch 'bugfixes' of git://git.linux-nfs.org/projects/trondmy/nfs-2.6
[pandora-kernel.git] / drivers / staging / ath6kl / include / common / AR6002 / AR6K_version.h
1 //------------------------------------------------------------------------------
2 // <copyright file="AR6K_version.h" company="Atheros">
3 //    Copyright (c) 2004-2010 Atheros Corporation.  All rights reserved.
4 // 
5 //
6 // Permission to use, copy, modify, and/or distribute this software for any
7 // purpose with or without fee is hereby granted, provided that the above
8 // copyright notice and this permission notice appear in all copies.
9 //
10 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 //
18 //
19 //------------------------------------------------------------------------------
20 //==============================================================================
21 // Author(s): ="Atheros"
22 //==============================================================================
23
24 #define __VER_MAJOR_ 3
25 #define __VER_MINOR_ 0 
26 #define __VER_PATCH_ 0
27
28 /* The makear6ksdk script (used for release builds) modifies the following line. */
29 #define __BUILD_NUMBER_ 233
30
31
32 /* Format of the version number. */
33 #define VER_MAJOR_BIT_OFFSET        28
34 #define VER_MINOR_BIT_OFFSET        24
35 #define VER_PATCH_BIT_OFFSET        16
36 #define VER_BUILD_NUM_BIT_OFFSET    0
37
38
39 /*
40  * The version has the following format:
41  * Bits 28-31: Major version
42  * Bits 24-27: Minor version
43  * Bits 16-23: Patch version
44  * Bits 0-15:  Build number (automatically generated during build process )
45  * E.g. Build 1.1.3.7 would be represented as 0x11030007.
46  *
47  * DO NOT split the following macro into multiple lines as this may confuse the build scripts.
48  */
49 #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 ) )
50
51 /* ABI Version. Reflects the version of binary interface exposed by AR6K target firmware. Needs to be incremented by 1 for any change in the firmware that requires upgrade of the driver on the host side for the change to work correctly */
52 #define AR6K_ABI_VERSION        1