Commit da868b03 authored by Helen Fornazier's avatar Helen Fornazier Committed by Greg Kroah-Hartman

Staging: i2o: Remove indentation of labels

This patch fixes the checkpatche.pl warnings:

WARNING: labels should not be indented
+      context_remove:

WARNING: labels should not be indented
+      nop_msg:

WARNING: labels should not be indented
+      exit:
Signed-off-by: default avatarHelen Fornazier <helen.fornazier@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4ebe6f46
...@@ -871,13 +871,13 @@ static int i2o_block_transfer(struct request *req) ...@@ -871,13 +871,13 @@ static int i2o_block_transfer(struct request *req)
return 0; return 0;
context_remove: context_remove:
i2o_cntxt_list_remove(c, req); i2o_cntxt_list_remove(c, req);
nop_msg: nop_msg:
i2o_msg_nop(c, msg); i2o_msg_nop(c, msg);
exit: exit:
return rc; return rc;
}; };
...@@ -1002,13 +1002,13 @@ static struct i2o_block_device *i2o_block_device_alloc(void) ...@@ -1002,13 +1002,13 @@ static struct i2o_block_device *i2o_block_device_alloc(void)
return dev; return dev;
cleanup_queue: cleanup_queue:
put_disk(gd); put_disk(gd);
cleanup_dev: cleanup_dev:
kfree(dev); kfree(dev);
exit: exit:
return ERR_PTR(rc); return ERR_PTR(rc);
}; };
...@@ -1115,10 +1115,10 @@ static int i2o_block_probe(struct device *dev) ...@@ -1115,10 +1115,10 @@ static int i2o_block_probe(struct device *dev)
return 0; return 0;
claim_release: claim_release:
i2o_device_claim_release(i2o_dev); i2o_device_claim_release(i2o_dev);
exit: exit:
return rc; return rc;
}; };
...@@ -1187,16 +1187,16 @@ static int __init i2o_block_init(void) ...@@ -1187,16 +1187,16 @@ static int __init i2o_block_init(void)
return 0; return 0;
unregister_blkdev: unregister_blkdev:
unregister_blkdev(I2O_MAJOR, "i2o_block"); unregister_blkdev(I2O_MAJOR, "i2o_block");
free_mempool: free_mempool:
mempool_destroy(i2o_blk_req_pool.pool); mempool_destroy(i2o_blk_req_pool.pool);
free_slab: free_slab:
kmem_cache_destroy(i2o_blk_req_pool.slab); kmem_cache_destroy(i2o_blk_req_pool.slab);
exit: exit:
return rc; return rc;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment