Skip to content

Commit

Permalink
Staging: hv: cleanup coding style issues in ChannelInterface.h
Browse files Browse the repository at this point in the history
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Sep 15, 2009
1 parent d41024f commit e89ce62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
11 changes: 2 additions & 9 deletions drivers/staging/hv/ChannelInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,7 @@ IVmbusChannelTeardownGpadl(

}

static void
GetChannelInterface(
VMBUS_CHANNEL_INTERFACE *ChannelInterface
)
void GetChannelInterface(VMBUS_CHANNEL_INTERFACE *ChannelInterface)
{
ChannelInterface->Open = IVmbusChannelOpen;
ChannelInterface->Close = IVmbusChannelClose;
Expand All @@ -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;

Expand Down
11 changes: 2 additions & 9 deletions drivers/staging/hv/ChannelInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_ */

0 comments on commit e89ce62

Please sign in to comment.