mirror of
https://github.com/torvalds/linux.git
synced 2026-08-01 03:59:40 +02:00
Staging:tidspbridge Fix minor checkpatch.pl warining Unnecessary parentheses
Fixed checkpatch "WARNING: Unnecessary parentheses" Signed-off-by: Adithya Krishnamurthy <linux.challenge1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
573954d377
commit
3b9a1ded5e
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user