Staging: hv: rename VersionInfo.h to version_info.h
authorGreg Kroah-Hartman <gregkh@suse.de>
Thu, 6 May 2010 05:52:28 +0000 (22:52 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 11 May 2010 18:36:18 +0000 (11:36 -0700)
The great renaming of the hv code is now complete.

Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/VersionInfo.h [deleted file]
drivers/staging/hv/blkvsc_drv.c
drivers/staging/hv/hv_utils.c
drivers/staging/hv/netvsc_drv.c
drivers/staging/hv/storvsc_drv.c
drivers/staging/hv/version_info.h [new file with mode: 0644]
drivers/staging/hv/vmbus.c
drivers/staging/hv/vmbus_drv.c

diff --git a/drivers/staging/hv/VersionInfo.h b/drivers/staging/hv/VersionInfo.h
deleted file mode 100644 (file)
index 82e74b1..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- *
- * Copyright (c) 2009, Microsoft 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.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
- *
- * Authors:
- *   Haiyang Zhang <haiyangz@microsoft.com>
- *   Hank Janssen  <hjanssen@microsoft.com>
- *
- */
-
-#ifndef __HV_VERSION_INFO
-#define __HV_VERSION_INFO
-
-/*
- * We use the same version numbering for all Hyper-V modules.
- *
- * Definition of versioning is as follows;
- *
- *     Major Number    Changes for these scenarios;
- *                     1.      When a new version of Windows Hyper-V
- *                             is released.
- *                     2.      A Major change has occurred in the
- *                             Linux IC's.
- *                     (For example the merge for the first time
- *                     into the kernel) Every time the Major Number
- *                     changes, the Revision number is reset to 0.
- *     Minor Number    Changes when new functionality is added
- *                     to the Linux IC's that is not a bug fix.
- *
- */
-#define HV_DRV_VERSION           "3.0"
-
-
-#endif
index 3e7c75e0b149df1967137e860e9447622aa0cd9d..a81040f74e99dcb2198e5fbfd9ff59ed202862cf 100644 (file)
@@ -32,7 +32,7 @@
 #include <scsi/scsi_dbg.h>
 #include "osd.h"
 #include "logging.h"
-#include "VersionInfo.h"
+#include "version_info.h"
 #include "vmbus.h"
 #include "storvsc_api.h"
 
index 44d306c3764629feae28df60b11db924b7dbe0ec..8f1d3ba7e098f1c4a39f60d2a7d0cbb88288372f 100644 (file)
@@ -30,7 +30,7 @@
 #include "vmbus.h"
 #include "vmbus_packet_format.h"
 #include "vmbus_channel_interface.h"
-#include "VersionInfo.h"
+#include "version_info.h"
 #include "channel.h"
 #include "vmbus_private.h"
 #include "vmbus_api.h"
index 3a6fe251282893984703b8a04059eb5b0e9e49f3..30c946c133c20c2f804ca1993120be61cc78f663 100644 (file)
@@ -36,7 +36,7 @@
 #include <net/pkt_sched.h>
 #include "osd.h"
 #include "logging.h"
-#include "VersionInfo.h"
+#include "version_info.h"
 #include "vmbus.h"
 #include "netvsc_api.h"
 
index 56b659bda370aff4bed12ba7adc32f46c9579d36..6a2014639d22d269773c9ebd60df6ffb0f3914ad 100644 (file)
@@ -33,7 +33,7 @@
 #include <scsi/scsi_dbg.h>
 #include "osd.h"
 #include "logging.h"
-#include "VersionInfo.h"
+#include "version_info.h"
 #include "vmbus.h"
 #include "storvsc_api.h"
 
diff --git a/drivers/staging/hv/version_info.h b/drivers/staging/hv/version_info.h
new file mode 100644 (file)
index 0000000..82e74b1
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ *
+ * Copyright (c) 2009, Microsoft 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.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place - Suite 330, Boston, MA 02111-1307 USA.
+ *
+ * Authors:
+ *   Haiyang Zhang <haiyangz@microsoft.com>
+ *   Hank Janssen  <hjanssen@microsoft.com>
+ *
+ */
+
+#ifndef __HV_VERSION_INFO
+#define __HV_VERSION_INFO
+
+/*
+ * We use the same version numbering for all Hyper-V modules.
+ *
+ * Definition of versioning is as follows;
+ *
+ *     Major Number    Changes for these scenarios;
+ *                     1.      When a new version of Windows Hyper-V
+ *                             is released.
+ *                     2.      A Major change has occurred in the
+ *                             Linux IC's.
+ *                     (For example the merge for the first time
+ *                     into the kernel) Every time the Major Number
+ *                     changes, the Revision number is reset to 0.
+ *     Minor Number    Changes when new functionality is added
+ *                     to the Linux IC's that is not a bug fix.
+ *
+ */
+#define HV_DRV_VERSION           "3.0"
+
+
+#endif
index 296c38ff5a44c756557e303c1ed653808fe8f142..0a9d8459db0cb56909cc5c9331811449d25eaef4 100644 (file)
@@ -24,7 +24,7 @@
 #include <linux/slab.h>
 #include "osd.h"
 #include "logging.h"
-#include "VersionInfo.h"
+#include "version_info.h"
 #include "vmbus_private.h"
 
 static const char *gDriverName = "vmbus";
index a715b3db87cedb82745889569be3cd4e9e986bdf..c21731a12ca7a7a8e8a9929369b2f99833c5e2f2 100644 (file)
@@ -27,7 +27,7 @@
 #include <linux/pci.h>
 #include <linux/dmi.h>
 #include <linux/slab.h>
-#include "VersionInfo.h"
+#include "version_info.h"
 #include "osd.h"
 #include "logging.h"
 #include "vmbus.h"
This page took 0.048826 seconds and 5 git commands to generate.