aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/channel_mgmt.c
diff options
context:
space:
mode:
authorHaiyang Zhang <haiyangz@microsoft.com>2011-01-26 15:12:10 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-01-31 16:42:48 -0500
commit646f1ea3796c7bd46587e4a9b58f64cf005efdfe (patch)
tree6da91c53316d0620504cd67fe25ac238fdfbd2b4 /drivers/staging/hv/channel_mgmt.c
parentadf874cb355fcc3293aa489f427f682e708cf586 (diff)
staging: hv: Convert camel cased functions in vmbus_drv.c to lower cases
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/channel_mgmt.c')
-rw-r--r--drivers/staging/hv/channel_mgmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/channel_mgmt.c b/drivers/staging/hv/channel_mgmt.c
index 0ce8f54cfc2..732a457c3b4 100644
--- a/drivers/staging/hv/channel_mgmt.c
+++ b/drivers/staging/hv/channel_mgmt.c
@@ -391,7 +391,7 @@ static void vmbus_process_offer(struct work_struct *work)
391 /* 391 /*
392 * Start the process of binding this offer to the driver 392 * Start the process of binding this offer to the driver
393 * We need to set the DeviceObject field before calling 393 * We need to set the DeviceObject field before calling
394 * VmbusChildDeviceAdd() 394 * vmbus_child_dev_add()
395 */ 395 */
396 newchannel->device_obj = vmbus_child_device_create( 396 newchannel->device_obj = vmbus_child_device_create(
397 &newchannel->offermsg.offer.InterfaceType, 397 &newchannel->offermsg.offer.InterfaceType,
@@ -406,7 +406,7 @@ static void vmbus_process_offer(struct work_struct *work)
406 * binding which eventually invokes the device driver's AddDevice() 406 * binding which eventually invokes the device driver's AddDevice()
407 * method. 407 * method.
408 */ 408 */
409 ret = VmbusChildDeviceAdd(newchannel->device_obj); 409 ret = vmbus_child_dev_add(newchannel->device_obj);
410 if (ret != 0) { 410 if (ret != 0) {
411 DPRINT_ERR(VMBUS, 411 DPRINT_ERR(VMBUS,
412 "unable to add child device object (relid %d)", 412 "unable to add child device object (relid %d)",