From: K. Y. Srinivasan Date: Thu, 25 Aug 2011 16:49:25 +0000 (-0700) Subject: Staging: hv: netvsc: Change the jump label Exit to exit X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5585d81e0a52f7994b8cdc6a8927b425c068444a;p=deliverable%2Flinux.git Staging: hv: netvsc: Change the jump label Exit to exit Change the jump lable "Exit" to "exit". Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/rndis_filter.c b/drivers/staging/hv/rndis_filter.c index 79dfe78807b6..6db48b92fe98 100644 --- a/drivers/staging/hv/rndis_filter.c +++ b/drivers/staging/hv/rndis_filter.c @@ -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; @@ -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; }