Commit 4e415a84 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski Committed by Christoph Hellwig

samples: configfs: consolidate local variables of the same type

Move local variables of the same type into a single line for better
readability.
Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 91aad625
......@@ -331,9 +331,8 @@ static struct configfs_subsystem *example_subsys[] = {
static int __init configfs_example_init(void)
{
int ret;
int i;
struct configfs_subsystem *subsys;
int ret, i;
for (i = 0; example_subsys[i]; i++) {
subsys = example_subsys[i];
......
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