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

Commit 1f74714f authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller
Browse files

net/dsa/dsa.c: remove unnecessary null test before kfree



Fix checkpatch warning:
WARNING: kfree(NULL) is safe this check is probably not required

Cc: "David S. Miller" <davem@davemloft.net>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: netdev@vger.kernel.org
Cc: Joe Perches <joe@perches.com>
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cb8eb776
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -351,7 +351,6 @@ static void dsa_of_free_platform_data(struct dsa_platform_data *pd)
	for (i = 0; i < pd->nr_chips; i++) {
		port_index = 0;
		while (port_index < DSA_MAX_PORTS) {
			if (pd->chip[i].port_names[port_index])
			kfree(pd->chip[i].port_names[port_index]);
			port_index++;
		}