Commit 22794281 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Staging: hv: vmbus: Rename vmbus_child_device_register

The vmbus devices are NOT child devices; rename vmbus_child_device_register
to reflect this.
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f2c73011
...@@ -393,7 +393,7 @@ static void vmbus_process_offer(struct work_struct *work) ...@@ -393,7 +393,7 @@ static void vmbus_process_offer(struct work_struct *work)
* binding which eventually invokes the device driver's AddDevice() * binding which eventually invokes the device driver's AddDevice()
* method. * method.
*/ */
ret = vmbus_child_device_register(newchannel->device_obj); ret = vmbus_device_register(newchannel->device_obj);
if (ret != 0) { if (ret != 0) {
pr_err("unable to add child device object (relid %d)\n", pr_err("unable to add child device object (relid %d)\n",
newchannel->offermsg.child_relid); newchannel->offermsg.child_relid);
......
...@@ -605,7 +605,7 @@ struct hv_device *vmbus_device_create(uuid_le *type, ...@@ -605,7 +605,7 @@ struct hv_device *vmbus_device_create(uuid_le *type,
uuid_le *instance, uuid_le *instance,
struct vmbus_channel *channel); 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); void vmbus_child_device_unregister(struct hv_device *device_obj);
/* static void */ /* static void */
......
...@@ -619,9 +619,9 @@ struct hv_device *vmbus_device_create(uuid_le *type, ...@@ -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; int ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment