staging/lustre: Fix unnecessary parentheses around variables
[linux-2.6-block.git] / drivers / staging / lustre / lustre / obdclass / genops.c
index a739eb1cc2deff9f48076052d614c3ee666f614b..6356870de697a1fca7a1ec5e3a8b6c45701add1a 100644 (file)
@@ -166,10 +166,10 @@ int class_register_type(struct obd_ops *dt_ops, struct md_ops *md_ops,
            !type->typ_name)
                goto failed;
 
-       *(type->typ_dt_ops) = *dt_ops;
+       *type->typ_dt_ops = *dt_ops;
        /* md_ops is optional */
        if (md_ops)
-               *(type->typ_md_ops) = *md_ops;
+               *type->typ_md_ops = *md_ops;
        strcpy(type->typ_name, name);
        spin_lock_init(&type->obd_type_lock);