Skip to content

Commit

Permalink
Staging: hv: netvsc: Change the jump label Exit to exit
Browse files Browse the repository at this point in the history
Change the jump lable "Exit" to "exit".

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 1c62787 commit 5585d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/hv/rndis_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ static int rndis_filter_set_packet_filter(struct rndis_device *dev,
* We can't deallocate the request since we may still receive a
* send completion for it.
*/
goto Exit;
goto exit;
} else {
set_complete = &request->response_msg.msg.set_complete;
status = set_complete->status;
Expand All @@ -546,7 +546,7 @@ static int rndis_filter_set_packet_filter(struct rndis_device *dev,
cleanup:
if (request)
put_rndis_request(dev, request);
Exit:
exit:
return ret;
}

Expand Down

0 comments on commit 5585d81

Please sign in to comment.