1cd6c2f12SHariprasad Shenai /*
2cd6c2f12SHariprasad Shenai  * This file is part of the Chelsio T4 Ethernet driver for Linux.
3cd6c2f12SHariprasad Shenai  *
4cd6c2f12SHariprasad Shenai  * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved.
5cd6c2f12SHariprasad Shenai  *
6cd6c2f12SHariprasad Shenai  * This software is available to you under a choice of one of two
7cd6c2f12SHariprasad Shenai  * licenses.  You may choose to be licensed under the terms of the GNU
8cd6c2f12SHariprasad Shenai  * General Public License (GPL) Version 2, available from the file
9cd6c2f12SHariprasad Shenai  * COPYING in the main directory of this source tree, or the
10cd6c2f12SHariprasad Shenai  * OpenIB.org BSD license below:
11cd6c2f12SHariprasad Shenai  *
12cd6c2f12SHariprasad Shenai  *     Redistribution and use in source and binary forms, with or
13cd6c2f12SHariprasad Shenai  *     without modification, are permitted provided that the following
14cd6c2f12SHariprasad Shenai  *     conditions are met:
15cd6c2f12SHariprasad Shenai  *
16cd6c2f12SHariprasad Shenai  *      - Redistributions of source code must retain the above
17cd6c2f12SHariprasad Shenai  *        copyright notice, this list of conditions and the following
18cd6c2f12SHariprasad Shenai  *        disclaimer.
19cd6c2f12SHariprasad Shenai  *
20cd6c2f12SHariprasad Shenai  *      - Redistributions in binary form must reproduce the above
21cd6c2f12SHariprasad Shenai  *        copyright notice, this list of conditions and the following
22cd6c2f12SHariprasad Shenai  *        disclaimer in the documentation and/or other materials
23cd6c2f12SHariprasad Shenai  *        provided with the distribution.
24cd6c2f12SHariprasad Shenai  *
25cd6c2f12SHariprasad Shenai  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26cd6c2f12SHariprasad Shenai  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27cd6c2f12SHariprasad Shenai  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28cd6c2f12SHariprasad Shenai  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29cd6c2f12SHariprasad Shenai  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30cd6c2f12SHariprasad Shenai  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31cd6c2f12SHariprasad Shenai  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32cd6c2f12SHariprasad Shenai  * SOFTWARE.
33cd6c2f12SHariprasad Shenai  */
34cd6c2f12SHariprasad Shenai 
35cd6c2f12SHariprasad Shenai #ifndef __T4FW_VERSION_H__
36cd6c2f12SHariprasad Shenai #define __T4FW_VERSION_H__
37cd6c2f12SHariprasad Shenai 
38cd6c2f12SHariprasad Shenai #define T4FW_VERSION_MAJOR 0x01
39cd6c2f12SHariprasad Shenai #define T4FW_VERSION_MINOR 0x0C
40cd6c2f12SHariprasad Shenai #define T4FW_VERSION_MICRO 0x19
41cd6c2f12SHariprasad Shenai #define T4FW_VERSION_BUILD 0x00
42cd6c2f12SHariprasad Shenai 
43cd6c2f12SHariprasad Shenai #define T5FW_VERSION_MAJOR 0x01
44cd6c2f12SHariprasad Shenai #define T5FW_VERSION_MINOR 0x0C
45cd6c2f12SHariprasad Shenai #define T5FW_VERSION_MICRO 0x19
46cd6c2f12SHariprasad Shenai #define T5FW_VERSION_BUILD 0x00
47cd6c2f12SHariprasad Shenai 
48cd6c2f12SHariprasad Shenai #endif
49