Browse Source

Staging: hv: remove VmbusGetChannelInfo

It's not needed, make the function pointer point to get_channel_info()
instead.

Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman 15 years ago
parent
commit
ee00966818
1 changed files with 1 additions and 10 deletions
  1. 1 10
      drivers/staging/hv/vmbus.c

+ 1 - 10
drivers/staging/hv/vmbus.c

@@ -60,15 +60,6 @@ static void VmbusGetChannelOffers(void)
 	vmbus_request_offers();
 }
 
-/*
- * VmbusGetChannelInfo - Get the device info for the specified device object
- */
-static void VmbusGetChannelInfo(struct hv_device *DeviceObject,
-				struct hv_device_info *DeviceInfo)
-{
-	get_channel_info(DeviceObject, DeviceInfo);
-}
-
 /*
  * VmbusCreateChildDevice - Creates the child device on the bus that represents the channel offer
  */
@@ -271,7 +262,7 @@ int VmbusInitialize(struct hv_driver *drv)
 	driver->OnMsgDpc		= VmbusOnMsgDPC;
 	driver->OnEventDpc		= VmbusOnEventDPC;
 	driver->GetChannelOffers	= VmbusGetChannelOffers;
-	driver->GetChannelInfo		= VmbusGetChannelInfo;
+	driver->GetChannelInfo		= get_channel_info;
 
 	/* Hypervisor initialization...setup hypercall page..etc */
 	ret = HvInit();