diff options
author | Hugues Morisset <morisset.hugues@gmail.com> | 2014-09-09 16:36:27 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-11 14:43:46 -0700 |
commit | b037976f7a083b2cb80fbff5f6629620f1b53fc0 (patch) | |
tree | 104a424bbd8a16f8c0379ceacf44bac5198125ac /drivers/staging/lustre | |
parent | fe67299757b6c16c3230c6e1ed4912a04f55b2a8 (diff) |
staging: lustre: fix coding style of function's pointer
Signed-off-by: Hugues Morisset <morisset.hugues@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre')
-rw-r--r-- | drivers/staging/lustre/lustre/include/obd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/lustre/lustre/include/obd.h b/drivers/staging/lustre/lustre/include/obd.h index 182cc0ee15f..66c4813ebd1 100644 --- a/drivers/staging/lustre/lustre/include/obd.h +++ b/drivers/staging/lustre/lustre/include/obd.h @@ -1109,7 +1109,7 @@ struct obd_ops { struct ptlrpc_request_set *set); int (*o_attach)(struct obd_device *dev, u32 len, void *data); int (*o_detach)(struct obd_device *dev); - int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg); + int (*o_setup)(struct obd_device *dev, struct lustre_cfg *cfg); int (*o_precleanup)(struct obd_device *dev, enum obd_cleanup_stage cleanup_stage); int (*o_cleanup)(struct obd_device *dev); @@ -1199,7 +1199,7 @@ struct obd_ops { enum obd_notify_event ev, void *data); int (*o_health_check)(const struct lu_env *env, struct obd_device *); - struct obd_uuid *(*o_get_uuid) (struct obd_export *exp); + struct obd_uuid *(*o_get_uuid)(struct obd_export *exp); /* quota methods */ int (*o_quotacheck)(struct obd_device *, struct obd_export *, @@ -1369,9 +1369,9 @@ struct lsm_operations { u64 *); void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, u64 *, u64 *); - int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes, + int (*lsm_lmm_verify)(struct lov_mds_md *lmm, int lmm_bytes, __u16 *stripe_count); - int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm, + int (*lsm_unpackmd)(struct lov_obd *lov, struct lov_stripe_md *lsm, struct lov_mds_md *lmm); }; |