Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
device_info = (struct storvsc_device_info *)additional_info;
- ret = stor_vsc_on_device_add(device, additional_info);
+ ret = storvsc_dev_add(device, additional_info);
if (ret != 0)
return ret;
* stor_vsc_on_device_add - Callback when the device belonging to this driver
* is added
*/
-int stor_vsc_on_device_add(struct hv_device *device,
+int storvsc_dev_add(struct hv_device *device,
void *additional_info)
{
struct storvsc_device *stor_device;
/* Interface */
-int stor_vsc_on_device_add(struct hv_device *device,
+int storvsc_dev_add(struct hv_device *device,
void *additional_info);
int stor_vsc_on_device_remove(struct hv_device *device);
STORVSC_MAX_IO_REQUESTS);
/* Setup the dispatch table */
- stor_driver->base.dev_add = stor_vsc_on_device_add;
+ stor_driver->base.dev_add = storvsc_dev_add;
stor_driver->base.dev_rm = stor_vsc_on_device_remove;
stor_driver->base.cleanup = stor_vsc_on_cleanup;