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

Commit 9397ce21 authored by Janani Ravichandran's avatar Janani Ravichandran Committed by Greg Kroah-Hartman
Browse files

staging: fsl-mc: Remove unneeded else following a return



Remove unnecessary else when there is a return statement in the
corresponding if block. Coccinelle patch used:

@rule1@
expression e1;
@@

	if (e1) { ... return ...; }
-       else{
	        ...
-       }

@rule2@
expression e2;
statement s1;
@@

	if(e2) { ... return ...; }
-       else
               s1

Signed-off-by: default avatarJanani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 453dd922
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -248,7 +248,6 @@ static bool fsl_mc_is_root_dprc(struct device *dev)
	fsl_mc_get_root_dprc(dev, &root_dprc_dev);
	if (!root_dprc_dev)
		return false;
	else
	return dev == root_dprc_dev;
}