Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268318
b: refs/heads/master
c: 2279428
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Sep 9, 2011
1 parent d098200 commit d78b451
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f2c73011117f6b45dea01f5450285405b5e88efb
refs/heads/master: 22794281974f9ba7770615191c382cca03067736
2 changes: 1 addition & 1 deletion trunk/drivers/staging/hv/channel_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ static void vmbus_process_offer(struct work_struct *work)
* binding which eventually invokes the device driver's AddDevice()
* method.
*/
ret = vmbus_child_device_register(newchannel->device_obj);
ret = vmbus_device_register(newchannel->device_obj);
if (ret != 0) {
pr_err("unable to add child device object (relid %d)\n",
newchannel->offermsg.child_relid);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/hv/hyperv_vmbus.h
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ struct hv_device *vmbus_device_create(uuid_le *type,
uuid_le *instance,
struct vmbus_channel *channel);

int vmbus_child_device_register(struct hv_device *child_device_obj);
int vmbus_device_register(struct hv_device *child_device_obj);
void vmbus_child_device_unregister(struct hv_device *device_obj);

/* static void */
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -619,9 +619,9 @@ struct hv_device *vmbus_device_create(uuid_le *type,
}

/*
* vmbus_child_device_register - Register the child device
* vmbus_device_register - Register the child device
*/
int vmbus_child_device_register(struct hv_device *child_device_obj)
int vmbus_device_register(struct hv_device *child_device_obj)
{
int ret = 0;

Expand Down

0 comments on commit d78b451

Please sign in to comment.