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