1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at 9 * http://www.opensource.org/licenses/cddl1.txt. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright (c) 2004-2012 Emulex. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _EMLXS_VERSION_H 28 #define _EMLXS_VERSION_H 29 30 #ifdef __cplusplus 31 extern "C" { 32 #endif 33 #define EMLXS_COPYRIGHT "Copyright (c) 2004-2012 Emulex. " \ 34 "All rights reserved." 35 36 37 #define EMLXS_VERSION "2.80.8.0" 38 #define EMLXS_DATE_MINUTE "45" /* 00-59 */ 39 #define EMLXS_DATE_HOUR "15" /* 00-23 */ 40 #define EMLXS_DATE_DAY "17" /* 00-31 */ 41 #define EMLXS_DATE_MONTH "09" /* 01-12 */ 42 #define EMLXS_DATE_YEAR "2012" /* YYYY */ 43 44 #define EMLXS_REVISION EMLXS_DATE_YEAR "." EMLXS_DATE_MONTH "." \ 45 EMLXS_DATE_DAY "." EMLXS_DATE_HOUR "." \ 46 EMLXS_DATE_MINUTE 47 #define EMLXS_NAME ""DRIVER_NAME" FCA v" EMLXS_DATE_YEAR \ 48 EMLXS_DATE_MONTH EMLXS_DATE_DAY "-" \ 49 EMLXS_VERSION 50 #define EMLXS_LABEL "Emulex-S s" VERSION "-" EMLXS_ARCH " " \ 51 MACH " v" EMLXS_VERSION 52 #define EMLXS_FW_NAME ""DRIVER_NAME" FW v" EMLXS_DATE_YEAR \ 53 EMLXS_DATE_MONTH EMLXS_DATE_DAY "-" \ 54 EMLXS_VERSION 55 56 #ifdef __cplusplus 57 } 58 #endif 59 60 #endif /* _EMLXS_VERSION_H */ 61