Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236543
b: refs/heads/master
c: e13a0b5
h: refs/heads/master
i:
  236541: f2c1083
  236539: d49ce7b
  236535: 233cc7c
  236527: 41f2952
  236511: 7dd89c8
  236479: ff2676c
  236415: 01f6e42
  236287: f19aec5
  236031: 632ccd8
  235519: eacc397
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Mar 14, 2011
1 parent 586d998 commit a1a39cb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 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: 3ca07cb06d3176b3eb1bfd49fdc8c8fbe649fa5b
refs/heads/master: e13a0b5a4b2ca9e318896a1c8c4b45d62477c956
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 @@ -408,7 +408,7 @@ static void vmbus_process_offer(struct work_struct *work)
* binding which eventually invokes the device driver's AddDevice()
* method.
*/
ret = vmbus_child_dev_add(newchannel->device_obj);
ret = vmbus_child_device_register(newchannel->device_obj);
if (ret != 0) {
DPRINT_ERR(VMBUS,
"unable to add child device object (relid %d)",
Expand Down
9 changes: 1 addition & 8 deletions trunk/drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,6 @@ static const struct hv_guid device_id = {

static struct hv_device *vmbus_device; /* vmbus root device */

/*
* vmbus_child_dev_add - Registers the child device with the vmbus
*/
int vmbus_child_dev_add(struct hv_device *child_dev)
{
return vmbus_child_device_register(child_dev);
}

/*
* vmbus_dev_add - Callback when the root bus device is added
Expand Down Expand Up @@ -662,7 +655,7 @@ struct hv_device *vmbus_child_device_create(struct hv_guid *type,
}

/*
* vmbus_child_device_register - Register the child device on the specified bus
* vmbus_child_device_register - Register the child device
*/
int vmbus_child_device_register(struct hv_device *child_device_obj)
{
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/staging/hv/vmbus_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ struct hv_device *vmbus_child_device_create(struct hv_guid *type,
struct hv_guid *instance,
struct vmbus_channel *channel);

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

Expand Down

0 comments on commit a1a39cb

Please sign in to comment.