Browse Source

Staging: hv: cleanup coding style issues in VersionInfo.h

Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman 16 years ago
parent
commit
d41024f70f
1 changed files with 6 additions and 4 deletions
  1. 6 4
      drivers/staging/hv/VersionInfo.h

+ 6 - 4
drivers/staging/hv/VersionInfo.h

@@ -21,9 +21,11 @@
  *
  */
 
+#ifndef __HV_VERSION_INFO
+#define __HV_VERSION_INFO
 
-#pragma once
+static const char VersionDate[] = __DATE__;
+static const char VersionTime[] = __TIME__;
+static const char VersionDesc[] = "Version 2.0";
 
-static const char VersionDate[]=__DATE__;
-static const char VersionTime[]=__TIME__;
-static const char VersionDesc[]= "Version 2.0";
+#endif