Commit 91aad625 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski Committed by Christoph Hellwig
Browse files

samples: configfs: don't reinitialize variables which are already zeroed



The structure containing the storeme field is allocated using kzalloc().
There's no need to set it to 0 again.

Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent b86ff67d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -192,8 +192,6 @@ static struct config_item *simple_children_make_item(struct config_group *group,
	config_item_init_type_name(&simple_child->item, name,
				   &simple_child_type);

	simple_child->storeme = 0;

	return &simple_child->item;
}