Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f800f09bf44871f6c6e4d3e42a60946e1ea51b17
Commit:     f800f09bf44871f6c6e4d3e42a60946e1ea51b17
Parent:     92ad8f37509a7d9d5dd6e0092211b092a7ca7fb1
Author:     Artem Bityutskiy <[EMAIL PROTECTED]>
AuthorDate: Sun May 6 16:45:43 2007 +0300
Committer:  Artem Bityutskiy <[EMAIL PROTECTED]>
CommitDate: Wed Jul 18 16:53:17 2007 +0300

    UBI: minor comma fix
    
    Use coma at the the last elements of structure initializer.
    
    Daniel Stone's explanation:
    
    Because it turns:
    -   .attr   = foo
    +   .attr   = foo,
    +   .bar    = baz
    
    into:
    +   .bar    = baz,
    
    i.e., far less likely to screw up a merge.
    
    Signed-off-by: Artem Bityutskiy <[EMAIL PROTECTED]>
---
 drivers/mtd/ubi/cdev.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c
index 34375ee..5fc9fd4 100644
--- a/drivers/mtd/ubi/cdev.c
+++ b/drivers/mtd/ubi/cdev.c
@@ -708,7 +708,7 @@ static int ubi_cdev_ioctl(struct inode *inode, struct file 
*file,
 struct file_operations ubi_cdev_operations = {
        .owner = THIS_MODULE,
        .ioctl = ubi_cdev_ioctl,
-       .llseek = no_llseek
+       .llseek = no_llseek,
 };
 
 /* UBI volume character device operations */
@@ -719,5 +719,5 @@ struct file_operations ubi_vol_cdev_operations = {
        .llseek  = vol_cdev_llseek,
        .read    = vol_cdev_read,
        .write   = vol_cdev_write,
-       .ioctl   = vol_cdev_ioctl
+       .ioctl   = vol_cdev_ioctl,
 };
-
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