Skip to content

Commit

Permalink
Staging: hv: storvsc: Fix/cleanup some dated comments in storvsc.c
Browse files Browse the repository at this point in the history
Fix/cleanup some dated comments in storvsc.c.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 25, 2011
1 parent e9bda43 commit 1920da8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions drivers/staging/hv/storvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ static int storvsc_channel_init(struct hv_device *device)
goto cleanup;
}

/* TODO: Check returned version */
if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
vstor_packet->status != 0)
goto cleanup;
Expand All @@ -193,7 +192,6 @@ static int storvsc_channel_init(struct hv_device *device)
goto cleanup;
}

/* TODO: Check returned version */
if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
vstor_packet->status != 0)
goto cleanup;
Expand Down Expand Up @@ -384,11 +382,12 @@ int storvsc_dev_add(struct hv_device *device,

/* Save the channel properties to our storvsc channel */

/* FIXME: */
/*
* If we support more than 1 scsi channel, we need to set the
* port number here to the scsi channel but how do we get the
* scsi channel prior to the bus scan
* scsi channel prior to the bus scan.
*
* The host does not support this.
*/

stor_device->port_number = device_info->port_number;
Expand Down Expand Up @@ -545,4 +544,3 @@ int storvsc_get_major_info(struct storvsc_device_info *device_info,

return -ENODEV;
}

0 comments on commit 1920da8

Please sign in to comment.