Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
hpi_version.h
Go to the documentation of this file.
1 
8 #ifndef _HPI_VERSION_H
9 #define _HPI_VERSION_H
10 
11 /* Use single digits for versions less that 10 to avoid octal. */
12 /* *** HPI_VER is the only edit required to update version *** */
14 #define HPI_VER HPI_VERSION_CONSTRUCTOR(4, 10, 1)
15 
17 #define HPI_VER_STRING "4.10.01"
18 
20 #define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(10, 2, 0)
21 
23 #define HPI_VERSION_CONSTRUCTOR(maj, min, r) ((maj << 16) + (min << 8) + r)
24 
26 #define HPI_VER_MAJOR(v) ((int)(v >> 16))
27 
28 #define HPI_VER_MINOR(v) ((int)((v >> 8) & 0xFF))
29 
30 #define HPI_VER_RELEASE(v) ((int)(v & 0xFF))
31 
32 #endif