1a23fd118Syl /*
2a23fd118Syl  * CDDL HEADER START
3a23fd118Syl  *
4a23fd118Syl  * The contents of this file are subject to the terms of the
5a23fd118Syl  * Common Development and Distribution License (the "License").
6a23fd118Syl  * You may not use this file except in compliance with the License.
7a23fd118Syl  *
8a23fd118Syl  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9a23fd118Syl  * or http://www.opensolaris.org/os/licensing.
10a23fd118Syl  * See the License for the specific language governing permissions
11a23fd118Syl  * and limitations under the License.
12a23fd118Syl  *
13a23fd118Syl  * When distributing Covered Code, include this CDDL HEADER in each
14a23fd118Syl  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15a23fd118Syl  * If applicable, add the following below this CDDL HEADER, with the
16a23fd118Syl  * fields enclosed by brackets "[]" replaced with your own identifying
17a23fd118Syl  * information: Portions Copyright [yyyy] [name of copyright owner]
18a23fd118Syl  *
19a23fd118Syl  * CDDL HEADER END
20a23fd118Syl  *
21*8347601bSyl  * Copyright (c) 2002-2006 Neterion, Inc.
22a23fd118Syl  */
23a23fd118Syl 
24a23fd118Syl #ifndef VERSION_H
25a23fd118Syl #define VERSION_H
26a23fd118Syl 
27a23fd118Syl #include "build-version.h"
28a23fd118Syl 
29a23fd118Syl #define XGE_HAL_VERSION_MAJOR	"2"
30*8347601bSyl #define XGE_HAL_VERSION_MINOR	"5"
31a23fd118Syl #define XGE_HAL_VERSION_FIX	"0"
32a23fd118Syl #define XGE_HAL_VERSION_BUILD	GENERATED_BUILD_VERSION
33a23fd118Syl #define XGE_HAL_VERSION XGE_HAL_VERSION_MAJOR"."XGE_HAL_VERSION_MINOR"."\
34a23fd118Syl 			XGE_HAL_VERSION_FIX"."XGE_HAL_VERSION_BUILD
35a23fd118Syl #define XGE_HAL_DESC	XGE_DRIVER_NAME" v."XGE_HAL_VERSION
36a23fd118Syl 
37a23fd118Syl #ifdef XGELL_VERSION_DEFINITION_PROVIDED
38a23fd118Syl /* Link Layer versioning */
39a23fd118Syl #include "xgell-version.h"
40a23fd118Syl #else
41a23fd118Syl #define XGELL_VERSION_MAJOR	"0"
42a23fd118Syl #define XGELL_VERSION_MINOR	"0"
43a23fd118Syl #define XGELL_VERSION_FIX	"0"
44a23fd118Syl #define XGELL_VERSION_BUILD	"0"
45a23fd118Syl #define XGELL_VERSION            XGELL_VERSION_MAJOR"."XGELL_VERSION_MINOR
46a23fd118Syl #endif
47a23fd118Syl 
48a23fd118Syl #endif /* VERSION_H */
49