Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b13ea8e authored by Saurabh Sengar's avatar Saurabh Sengar Committed by Rob Herring
Browse files

drivers: of: removing assignment of 0 to static variable



no need to initialise static variable with 0, hence correcting it.

Signed-off-by: default avatarSaurabh Sengar <saurabh.truth@gmail.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 25fff6aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ static void * unflatten_dt_node(const void *blob,
	struct property *pp, **prev_pp = NULL;
	const char *pathp;
	unsigned int l, allocl;
	static int depth = 0;
	static int depth;
	int old_depth;
	int offset;
	int has_name = 0;