1 /* 2 * Copyright 2014-2017 Cavium, Inc. 3 * The contents of this file are subject to the terms of the Common Development 4 * and Distribution License, v.1, (the "License"). 5 * 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the License at available 9 * at http://opensource.org/licenses/CDDL-1.0 10 * 11 * See the License for the specific language governing permissions and 12 * limitations under the License. 13 */ 14 15 /* 16 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 17 */ 18 19 #ifndef _LM_DESC_H 20 #define _LM_DESC_H 21 22 #ifdef __cplusplus 23 extern "C" { 24 #endif 25 26 /* driver version. */ 27 #define LM_DRIVER_MAJOR_VER 7 28 #define LM_DRIVER_MINOR_VER 0 29 #define LM_DRIVER_REL_NUM 1 30 #define LM_DRIVER_FIX_NUM 0 31 32 /* major product release version which corresponds to T2.8, T3.0, etc. */ 33 #define LM_PRODUCT_MAJOR_VER 16 34 #define LM_PRODUCT_MINOR_VER 0 35 #define LM_PRODUCT_FIX_NUM 0 36 37 #define LM_COMPANY_NAME_STR "QLogic Corporation" 38 #define LM_COPYRIGHT_STR "Copyright 2014 QLogic Corporation" 39 #define LM_PRODUCT_NAME_STR "QLogic 570x/571x GigE" 40 41 #ifdef __cplusplus 42 } 43 #endif 44 45 #endif /* _LM_DESC_H */ 46