Staging: hv: cleanup coding style issues in ChannelInterface.h
authorGreg Kroah-Hartman <gregkh@suse.de>
Tue, 18 Aug 2009 00:22:08 +0000 (17:22 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 15 Sep 2009 19:01:55 +0000 (12:01 -0700)
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/ChannelInterface.c
drivers/staging/hv/ChannelInterface.h

index 2a58015..6a30691 100644 (file)
@@ -162,10 +162,7 @@ IVmbusChannelTeardownGpadl(
 
 }
 
-static void
-GetChannelInterface(
-       VMBUS_CHANNEL_INTERFACE *ChannelInterface
-       )
+void GetChannelInterface(VMBUS_CHANNEL_INTERFACE *ChannelInterface)
 {
        ChannelInterface->Open                                          = IVmbusChannelOpen;
        ChannelInterface->Close                                         = IVmbusChannelClose;
@@ -180,11 +177,7 @@ GetChannelInterface(
 }
 
 
-static void
-GetChannelInfo(
-       struct hv_device *Device,
-       DEVICE_INFO                     *DeviceInfo
-                          )
+void GetChannelInfo(struct hv_device *Device, DEVICE_INFO *DeviceInfo)
 {
        VMBUS_CHANNEL_DEBUG_INFO debugInfo;
 
index 3385914..49a7c7d 100644 (file)
 
 #include "include/VmbusApi.h"
 
-static void
-GetChannelInterface(
-       VMBUS_CHANNEL_INTERFACE *ChannelInterface
-       );
+void GetChannelInterface(VMBUS_CHANNEL_INTERFACE *ChannelInterface);
 
-static void
-GetChannelInfo(
-       struct hv_device *Device,
-       DEVICE_INFO                     *DeviceInfo
-       );
+void GetChannelInfo(struct hv_device *Device, DEVICE_INFO *DeviceInfo);
 
 #endif /* _CHANNEL_INTERFACE_H_ */