Merge branch 'virtio' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / hv / version_info.h
CommitLineData
3e7ee490
HJ
1/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
21 *
22 */
23
d41024f7
GKH
24#ifndef __HV_VERSION_INFO
25#define __HV_VERSION_INFO
3e7ee490 26
26c14cc1
HJ
27/*
28 * We use the same version numbering for all Hyper-V modules.
29 *
30 * Definition of versioning is as follows;
31 *
0686e4f4 32 * Major Number Changes for these scenarios;
26c14cc1
HJ
33 * 1. When a new version of Windows Hyper-V
34 * is released.
35 * 2. A Major change has occurred in the
0686e4f4 36 * Linux IC's.
26c14cc1
HJ
37 * (For example the merge for the first time
38 * into the kernel) Every time the Major Number
39 * changes, the Revision number is reset to 0.
40 * Minor Number Changes when new functionality is added
41 * to the Linux IC's that is not a bug fix.
42 *
9153f7b9 43 * 3.1 - Added completed hv_utils driver. Shutdown/Heartbeat/Timesync
26c14cc1 44 */
9153f7b9 45#define HV_DRV_VERSION "3.1"
26c14cc1 46
3e7ee490 47
d41024f7 48#endif