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

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
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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];