aboutsummaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorBartosz Golaszewski <brgl@bgdev.pl>2020-10-07 15:43:56 +0200
committerChristoph Hellwig <hch@lst.de>2020-10-07 15:43:56 +0200
commit447243737c9d52d9c77fe0da0ed993903b64f28c (patch)
tree9837ee120459e68352a6eb077f15d01d0ac6c792 /samples
parentMAINTAINERS: add the sample directory to the configfs entry (diff)
downloadlinux-dev-447243737c9d52d9c77fe0da0ed993903b64f28c.tar.xz
linux-dev-447243737c9d52d9c77fe0da0ed993903b64f28c.zip
samples: configfs: remove redundant newlines
There's no need for suplemental newlines in the source file - especially since the examples are well divided with comments already. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'samples')
-rw-r--r--samples/configfs/configfs_sample.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/samples/configfs/configfs_sample.c b/samples/configfs/configfs_sample.c
index e2398d94e8da..cabe77ef05d5 100644
--- a/samples/configfs/configfs_sample.c
+++ b/samples/configfs/configfs_sample.c
@@ -15,11 +15,8 @@
#include <linux/init.h>
#include <linux/module.h>
#include <linux/slab.h>
-
#include <linux/configfs.h>
-
-
/*
* 01-childless
*
@@ -117,7 +114,6 @@ static struct childless childless_subsys = {
},
};
-
/* ----------------------------------------------------------------- */
/*
@@ -185,7 +181,6 @@ static const struct config_item_type simple_child_type = {
.ct_owner = THIS_MODULE,
};
-
struct simple_children {
struct config_group group;
};
@@ -263,7 +258,6 @@ static struct configfs_subsystem simple_children_subsys = {
},
};
-
/* ----------------------------------------------------------------- */
/*