Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ed155a95a4eb7d8dae61b64ab394314c5195e414
Commit:     ed155a95a4eb7d8dae61b64ab394314c5195e414
Parent:     95e896c35f3c3157159b89682b60281640b5d148
Author:     Grant Likely <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 1 16:33:56 2007 +0200
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 09:25:59 2007 +0200

    Sysace: Labels in C code should not be indented.
    
    Remove the indentation on labels
    
    Signed-off-by: Grant Likely <[EMAIL PROTECTED]>
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 drivers/block/xsysace.c |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c
index 56c4af3..3ea172b 100644
--- a/drivers/block/xsysace.c
+++ b/drivers/block/xsysace.c
@@ -1034,13 +1034,13 @@ static int __devinit ace_setup(struct ace_device *ace)
 
        return 0;
 
-      err_read:
+err_read:
        put_disk(ace->gd);
-      err_alloc_disk:
+err_alloc_disk:
        blk_cleanup_queue(ace->queue);
-      err_blk_initq:
+err_blk_initq:
        iounmap(ace->baseaddr);
-      err_ioremap:
+err_ioremap:
        dev_info(ace->dev, "xsysace: error initializing device at 0x%lx\n",
               ace->physaddr);
        return -ENOMEM;
@@ -1097,11 +1097,11 @@ ace_alloc(struct device *dev, int id, unsigned long 
physaddr,
        dev_set_drvdata(dev, ace);
        return 0;
 
-      err_setup:
+err_setup:
        dev_set_drvdata(dev, NULL);
        kfree(ace);
-      err_alloc:
-      err_noreg:
+err_alloc:
+err_noreg:
        dev_err(dev, "could not initialize device, err=%i\n", rc);
        return rc;
 }
@@ -1263,11 +1263,11 @@ static int __init ace_init(void)
        pr_info("Xilinx SystemACE device driver, major=%i\n", ace_major);
        return 0;
 
-      err_plat:
+err_plat:
        ace_of_unregister();
-      err_of:
+err_of:
        unregister_blkdev(ace_major, "xsysace");
-      err_blk:
+err_blk:
        printk(KERN_ERR "xsysace: registration failed; err=%i\n", rc);
        return rc;
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to