iPXE
vxge_version.h
Go to the documentation of this file.
1 /*
2  * vxge-version.h: iPXE driver for Neterion Inc's X3100 Series 10GbE
3  * PCIe I/O Virtualized Server Adapter.
4  *
5  * Copyright(c) 2002-2010 Neterion Inc.
6  *
7  * This software may be used and distributed according to the terms of
8  * the GNU General Public License (GPL), incorporated herein by
9  * reference. Drivers based on or derived from this code fall under
10  * the GPL and must retain the authorship, copyright and license
11  * notice.
12  *
13  */
14 
15 FILE_LICENCE(GPL2_ONLY);
16 
17 #ifndef VXGE_VERSION_H
18 
19 #define VXGE_VERSION_H
20 
21 /* ipxe vxge driver version fields.
22  * Note: Each field must be a nibble size
23  */
24 #define VXGE_VERSION_MAJOR 3
25 #define VXGE_VERSION_MINOR 5
26 #define VXGE_VERSION_FIX 0
27 #define VXGE_VERSION_BUILD 1
28 
29 #define VXGE_FW_VER(major, minor, build) \
30  (((major) << 16) + ((minor) << 8) + (build))
31 
32 /* Certified FW version. */
33 #define VXGE_CERT_FW_VER_MAJOR 1
34 #define VXGE_CERT_FW_VER_MINOR 6
35 #define VXGE_CERT_FW_VER_BUILD 0
36 
37 #define VXGE_CERT_FW_VER VXGE_FW_VER(VXGE_CERT_FW_VER_MAJOR, \
38  VXGE_CERT_FW_VER_MINOR, VXGE_CERT_FW_VER_BUILD)
39 
40 #endif
FILE_LICENCE(GPL2_ONLY)