summaryrefslogtreecommitdiff
path: root/drivers/staging/mei/mei_version.h
blob: 075bad8f0bf5a517673b18415d6b89cfaa5d7fd7 (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
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
 * Copyright (c) 2003-2011, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */


#ifndef MEI_VERSION_H
#define MEI_VERSION_H

#define MAJOR_VERSION		7
#define MINOR_VERSION		1
#define QUICK_FIX_NUMBER	20
#define VER_BUILD		1

#define MEI_DRV_VER1 __stringify(MAJOR_VERSION) "." __stringify(MINOR_VERSION)
#define MEI_DRV_VER2 __stringify(QUICK_FIX_NUMBER) "." __stringify(VER_BUILD)

#define MEI_DRIVER_VERSION	MEI_DRV_VER1 "." MEI_DRV_VER2

#endif