mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
Staging: hv: storvsc: call vmbus_open directly
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <haiyangz@microsoft.com> Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
81c92f43e7
commit
60f841ac36
1 changed files with 5 additions and 7 deletions
|
@ -499,13 +499,11 @@ static int StorVscConnectToVsp(struct hv_device *Device)
|
|||
memset(&props, 0, sizeof(struct vmstorage_channel_properties));
|
||||
|
||||
/* Open the channel */
|
||||
ret = Device->Driver->VmbusChannelInterface.Open(Device,
|
||||
storDriver->RingBufferSize,
|
||||
storDriver->RingBufferSize,
|
||||
(void *)&props,
|
||||
sizeof(struct vmstorage_channel_properties),
|
||||
StorVscOnChannelCallback,
|
||||
Device);
|
||||
ret = vmbus_open(Device->channel,
|
||||
storDriver->RingBufferSize, storDriver->RingBufferSize,
|
||||
(void *)&props,
|
||||
sizeof(struct vmstorage_channel_properties),
|
||||
StorVscOnChannelCallback, Device);
|
||||
|
||||
DPRINT_DBG(STORVSC, "storage props: path id %d, tgt id %d, max xfer %d",
|
||||
props.PathId, props.TargetId, props.MaxTransferBytes);
|
||||
|
|
Loading…
Reference in a new issue