xref: /freebsd/contrib/ofed/libbnxtre/version.h (revision 9207f9d206a4017001f01ca27d3d25a26c268a95)
1*9207f9d2SChandrakanth patil /*
2*9207f9d2SChandrakanth patil  * Copyright (c) 2024, Broadcom. All rights reserved.  The term
3*9207f9d2SChandrakanth patil  * Broadcom refers to Broadcom Limited and/or its subsidiaries.
4*9207f9d2SChandrakanth patil  *
5*9207f9d2SChandrakanth patil  * Redistribution and use in source and binary forms, with or without
6*9207f9d2SChandrakanth patil  * modification, are permitted provided that the following conditions
7*9207f9d2SChandrakanth patil  * are met:
8*9207f9d2SChandrakanth patil  *
9*9207f9d2SChandrakanth patil  * 1. Redistributions of source code must retain the above copyright
10*9207f9d2SChandrakanth patil  *    notice, this list of conditions and the following disclaimer.
11*9207f9d2SChandrakanth patil  * 2. Redistributions in binary form must reproduce the above copyright
12*9207f9d2SChandrakanth patil  *    notice, this list of conditions and the following disclaimer in
13*9207f9d2SChandrakanth patil  *    the documentation and/or other materials provided with the
14*9207f9d2SChandrakanth patil  *    distribution.
15*9207f9d2SChandrakanth patil  *
16*9207f9d2SChandrakanth patil  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
17*9207f9d2SChandrakanth patil  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18*9207f9d2SChandrakanth patil  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19*9207f9d2SChandrakanth patil  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
20*9207f9d2SChandrakanth patil  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*9207f9d2SChandrakanth patil  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*9207f9d2SChandrakanth patil  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23*9207f9d2SChandrakanth patil  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24*9207f9d2SChandrakanth patil  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25*9207f9d2SChandrakanth patil  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26*9207f9d2SChandrakanth patil  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27*9207f9d2SChandrakanth patil  */
28*9207f9d2SChandrakanth patil 
29*9207f9d2SChandrakanth patil #ifndef __BNXT_RE_VERSION_H__
30*9207f9d2SChandrakanth patil #define __BNXT_RE_VERSION_H__
31*9207f9d2SChandrakanth patil 
32*9207f9d2SChandrakanth patil #define	MAJOR_VERSION "230"
33*9207f9d2SChandrakanth patil #define	MINOR_VERSION "0"
34*9207f9d2SChandrakanth patil #define	SUB_MAJOR_VERSION "133"
35*9207f9d2SChandrakanth patil #define	SUB_MINOR_VERSION "0"
36*9207f9d2SChandrakanth patil 
37*9207f9d2SChandrakanth patil #define	LIBBNXT_RE_VERSION(a, b, c, d)	a"."b"."c"."d
38*9207f9d2SChandrakanth patil 
39*9207f9d2SChandrakanth patil #define LIBBNXT_RE_REL_VERSION	LIBBNXT_RE_VERSION(MAJOR_VERSION,\
40*9207f9d2SChandrakanth patil 						   MINOR_VERSION,\
41*9207f9d2SChandrakanth patil 						   SUB_MAJOR_VERSION,\
42*9207f9d2SChandrakanth patil 						   SUB_MINOR_VERSION)
43*9207f9d2SChandrakanth patil #define LIBBNXT_RE_BUILD_VERSION 230.0.133.0
44*9207f9d2SChandrakanth patil 
45*9207f9d2SChandrakanth patil #endif	/* __BNXT_RE_VERSION_H__ */
46