From: Adithya Krishnamurthy Date: Tue, 15 Jul 2014 16:48:20 +0000 (+0530) Subject: Staging:tidspbridge Fix minor checkpatch.pl warining Unnecessary parentheses X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3b9a1ded5eb2b7c13f98988542d19472d1784a93;p=deliverable%2Flinux.git Staging:tidspbridge Fix minor checkpatch.pl warining Unnecessary parentheses Fixed checkpatch "WARNING: Unnecessary parentheses" Signed-off-by: Adithya Krishnamurthy Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/tidspbridge/dynload/cload.c b/drivers/staging/tidspbridge/dynload/cload.c index 83f2106ff8a7..b306349c2267 100644 --- a/drivers/staging/tidspbridge/dynload/cload.c +++ b/drivers/staging/tidspbridge/dynload/cload.c @@ -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;