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

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
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment