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

Commit 3b9a1ded authored by Adithya Krishnamurthy's avatar Adithya Krishnamurthy Committed by Greg Kroah-Hartman
Browse files

Staging:tidspbridge Fix minor checkpatch.pl warining Unnecessary parentheses



Fixed checkpatch "WARNING: Unnecessary parentheses"

Signed-off-by: default avatarAdithya Krishnamurthy <linux.challenge1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 573954d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -376,7 +376,7 @@ void dload_headers(struct dload_state *dlthis)
		return;
	}
	/* Check for valid file format */
	if ((dlthis->dfile_hdr.df_doff_version != DOFF0)) {
	if (dlthis->dfile_hdr.df_doff_version != DOFF0) {
		dload_error(dlthis, "Bad DOFF version 0x%x",
			    dlthis->dfile_hdr.df_doff_version);
		return;