]> git.itanic.dy.fi Git - linux-stable/commitdiff
nilfs2: clean trailing semicolons in macros
authorRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Mon, 23 May 2016 23:23:28 +0000 (16:23 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 24 May 2016 00:04:14 +0000 (17:04 -0700)
Remove trailing semicolons from macros, as suggested by checkpatch.pl.

Link: http://lkml.kernel.org/r/1461935747-10380-12-git-send-email-konishi.ryusuke@lab.ntt.co.jp
[konishi.ryusuke@lab.ntt.co.jp: fix style issues]
Link: http://lkml.kernel.org/r/20160509.231703.1481729973362188932.konishi.ryusuke@lab.ntt.co.jp
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/nilfs2/sysfs.c
fs/nilfs2/sysfs.h

index bbb0dcc35905c661ca41012a3f60046a671161a8..3e7d85335adfdd8e3ecf070d445be35c8112e3ba 100644 (file)
@@ -68,7 +68,7 @@ static ssize_t nilfs_##name##_attr_store(struct kobject *kobj, \
 static const struct sysfs_ops nilfs_##name##_attr_ops = { \
        .show   = nilfs_##name##_attr_show, \
        .store  = nilfs_##name##_attr_store, \
-};
+}
 
 #define NILFS_DEV_INT_GROUP_TYPE(name, parent_name) \
 static void nilfs_##name##_attr_release(struct kobject *kobj) \
@@ -84,7 +84,7 @@ static struct kobj_type nilfs_##name##_ktype = { \
        .default_attrs  = nilfs_##name##_attrs, \
        .sysfs_ops      = &nilfs_##name##_attr_ops, \
        .release        = nilfs_##name##_attr_release, \
-};
+}
 
 #define NILFS_DEV_INT_GROUP_FNS(name, parent_name) \
 static int nilfs_sysfs_create_##name##_group(struct the_nilfs *nilfs) \
index 677e3a1a83708d26e8fadc5a9f7eb6992ef74d59..648cedf9c06ec75c3e783d0d5e6f5b91ae1891d9 100644 (file)
@@ -66,7 +66,7 @@ struct nilfs_##name##_attr { \
                        char *); \
        ssize_t (*store)(struct kobject *, struct attribute *, \
                         const char *, size_t); \
-};
+}
 
 NILFS_COMMON_ATTR_STRUCT(feature);
 
@@ -77,7 +77,7 @@ struct nilfs_##name##_attr { \
                        char *); \
        ssize_t (*store)(struct nilfs_##name##_attr *, struct the_nilfs *, \
                         const char *, size_t); \
-};
+}
 
 NILFS_DEV_ATTR_STRUCT(dev);
 NILFS_DEV_ATTR_STRUCT(segments);
@@ -93,7 +93,7 @@ struct nilfs_##name##_attr { \
                        char *); \
        ssize_t (*store)(struct nilfs_##name##_attr *, struct nilfs_root *, \
                         const char *, size_t); \
-};
+}
 
 NILFS_CP_ATTR_STRUCT(snapshot);