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

Commit b363700e authored by Quentin Lambert's avatar Quentin Lambert Committed by Herbert Xu
Browse files

crypto: ixp4xx - Fix a "simple if" coding style warning

parent a0118c8b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -447,9 +447,8 @@ static int init_ixp_crypto(struct device *dev)

	if (!npe_running(npe_c)) {
		ret = npe_load_firmware(npe_c, npe_name(npe_c), dev);
		if (ret) {
		if (ret)
			return ret;
		}
		if (npe_recv_message(npe_c, msg, "STATUS_MSG"))
			goto npe_error;
	} else {