Skip to content

Commit

Permalink
Staging: hv: storvsc: Fix a typo
Browse files Browse the repository at this point in the history
Fix a typo in a function name.

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 29, 2011
1 parent 4ed51a2 commit b8de73d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/hv/storvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1130,9 +1130,9 @@ static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)


/*
* storvsc_commmand_completion - Command completion processing
* storvsc_command_completion - Command completion processing
*/
static void storvsc_commmand_completion(struct hv_storvsc_request *request)
static void storvsc_command_completion(struct hv_storvsc_request *request)
{
struct storvsc_cmd_request *cmd_request =
(struct storvsc_cmd_request *)request->context;
Expand Down Expand Up @@ -1240,7 +1240,7 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
break;
}

request->on_io_completion = storvsc_commmand_completion;
request->on_io_completion = storvsc_command_completion;
request->context = cmd_request;/* scmnd; */

vm_srb->port_number = host_dev->port;
Expand Down

0 comments on commit b8de73d

Please sign in to comment.