diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-21 03:02:49 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-21 03:02:49 +0400 |
commit | a4e91ed24bc6b68caa534a9de35f7fc770bffde9 (patch) | |
tree | 88dc83093cd1afabbf6ffdde04ee707f2b5cf85f /drivers | |
parent | e957bda0f4c88b29a027be23f4cc05f2abab2329 (diff) | |
download | linux-a4e91ed24bc6b68caa534a9de35f7fc770bffde9.tar.xz |
Staging: hv: vmbus_drv: remove vmbus_child_device_get_info
Just make the call to get_channel_info() directly.
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/hv/vmbus_drv.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c index 68d95eb7f929..8b3b14e5c37d 100644 --- a/drivers/staging/hv/vmbus_drv.c +++ b/drivers/staging/hv/vmbus_drv.c @@ -76,8 +76,6 @@ static void vmbus_child_device_destroy(struct hv_device *device_obj); static int vmbus_child_device_register(struct hv_device *root_device_obj, struct hv_device *child_device_obj); static void vmbus_child_device_unregister(struct hv_device *child_device_obj); -static void vmbus_child_device_get_info(struct hv_device *device_obj, - struct hv_device_info *device_info); static ssize_t vmbus_show_device_attr(struct device *dev, struct device_attribute *dev_attr, char *buf); @@ -146,7 +144,7 @@ static ssize_t vmbus_show_device_attr(struct device *dev, memset(&device_info, 0, sizeof(struct hv_device_info)); - vmbus_child_device_get_info(&device_ctx->device_obj, &device_info); + get_channel_info(&device_ctx->device_obj, &device_info); if (!strcmp(dev_attr->attr.name, "class_id")) { return sprintf(buf, "{%02x%02x%02x%02x-%02x%02x-%02x%02x-" @@ -464,17 +462,6 @@ void vmbus_get_interface(struct vmbus_channel_interface *interface) EXPORT_SYMBOL(vmbus_get_interface); /* - * vmbus_child_device_get_info - Get the vmbus child device info. - * - * This is invoked to display various device attributes in sysfs. - */ -static void vmbus_child_device_get_info(struct hv_device *device_obj, - struct hv_device_info *device_info) -{ - get_channel_info(device_obj, device_info); -} - -/* * vmbus_child_device_create - Creates and registers a new child device * on the vmbus. */ |