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

Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman 2009-08-17 17:22:08 -07:00
Родитель d41024f70f
Коммит e89ce628ba
2 изменённых файлов: 4 добавлений и 18 удалений

Просмотреть файл

@ -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;

Просмотреть файл

@ -27,15 +27,8 @@
#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_ */