aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/obdclass/obd_mount.c
diff options
context:
space:
mode:
authorEmoly Liu <emoly.liu@intel.com>2016-08-20 17:34:27 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-21 16:11:46 +0200
commit49880263163547bf8fe526d1006052729afb29e2 (patch)
tree7388173c65aff4ff0a266d7e359fce45bd75abde /drivers/staging/lustre/lustre/obdclass/obd_mount.c
parentstaging: lustre: update version to 2.5.99 (diff)
downloadlinux-dev-49880263163547bf8fe526d1006052729afb29e2.tar.xz
linux-dev-49880263163547bf8fe526d1006052729afb29e2.zip
staging/lustre: Fix unnecessary parentheses around variables
This patch fixes all checkpatch occurences of "CHECK: Unnecessary parentheses around xxx" in Lustre code. Signed-off-by: Emoly Liu <emoly.liu@intel.com> Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/obdclass/obd_mount.c')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/obd_mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/obd_mount.c b/drivers/staging/lustre/lustre/obdclass/obd_mount.c
index 595ea1f935e4..b838194004ee 100644
--- a/drivers/staging/lustre/lustre/obdclass/obd_mount.c
+++ b/drivers/staging/lustre/lustre/obdclass/obd_mount.c
@@ -394,7 +394,7 @@ int lustre_start_mgc(struct super_block *sb)
lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)
data->ocd_connect_flags &= ~OBD_CONNECT_IMP_RECOV;
data->ocd_version = LUSTRE_VERSION_CODE;
- rc = obd_connect(NULL, &exp, obd, &(obd->obd_uuid), data, NULL);
+ rc = obd_connect(NULL, &exp, obd, &obd->obd_uuid, data, NULL);
if (rc) {
CERROR("connect failed %d\n", rc);
goto out;