]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
samples: configfs: fix alignment in item struct
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 24 Sep 2020 12:45:20 +0000 (14:45 +0200)
committerChristoph Hellwig <hch@lst.de>
Wed, 7 Oct 2020 13:44:59 +0000 (15:44 +0200)
Aling the assignment of a static structure's field to be consistent with
all other instances.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
samples/configfs/configfs_sample.c

index ad3f8e1071faf9940ec43453f7a5011a31b211f8..1af7cc965098dec42161e57af3a0c7b91743f560 100644 (file)
@@ -172,7 +172,7 @@ static void simple_child_release(struct config_item *item)
 }
 
 static struct configfs_item_operations simple_child_item_ops = {
-       .release                = simple_child_release,
+       .release        = simple_child_release,
 };
 
 static const struct config_item_type simple_child_type = {