~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/staging/hv/version_info.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
24
 
#ifndef __HV_VERSION_INFO
25
 
#define __HV_VERSION_INFO
26
 
 
27
 
/*
28
 
 * We use the same version numbering for all Hyper-V modules.
29
 
 *
30
 
 * Definition of versioning is as follows;
31
 
 *
32
 
 *      Major Number    Changes for these scenarios;
33
 
 *                      1.      When a new version of Windows Hyper-V
34
 
 *                              is released.
35
 
 *                      2.      A Major change has occurred in the
36
 
 *                              Linux IC's.
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
 
 *
43
 
 * 3.1 - Added completed hv_utils driver. Shutdown/Heartbeat/Timesync
44
 
 */
45
 
#define HV_DRV_VERSION           "3.1"
46
 
 
47
 
 
48
 
#endif