Staging:tidspbridge Fix minor checkpatch.pl warining Unnecessary parentheses
authorAdithya Krishnamurthy <linux.challenge1@gmail.com>
Tue, 15 Jul 2014 16:48:20 +0000 (22:18 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Jul 2014 04:00:42 +0000 (21:00 -0700)
Fixed checkpatch "WARNING: Unnecessary parentheses"

Signed-off-by: Adithya Krishnamurthy <linux.challenge1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/tidspbridge/dynload/cload.c

index 83f2106ff8a7ef805a2a7c620777570346dd820f..b306349c22671dced385225e85ec27c7306d21e3 100644 (file)
@@ -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;
This page took 0.025293 seconds and 5 git commands to generate.