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

Commit afda768f authored by Stefan Agner's avatar Stefan Agner Committed by Tony Lindgren
Browse files

ARM: OMAP2+: remove superfluous NULL pointer check



The NULL pointer check for superset->muxnames will always evaluate
true since muxnames is an array within struct omap_mux. Remove the
superfluous check to avoid warnings when using LLVM/clang.

Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 606da482
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1053,7 +1053,7 @@ static void __init omap_mux_init_list(struct omap_mux_partition *partition,
		struct omap_mux *entry;

#ifdef CONFIG_OMAP_MUX
		if (!superset->muxnames || !superset->muxnames[0]) {
		if (!superset->muxnames[0]) {
			superset++;
			continue;
		}