staging/lustre/fld: Remove useless typedefs

Typedefs fld_hash_func_t and fld_scan_func_t are used exectly once in
the following structure so don't really help anything at all.

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Oleg Drokin 2016-02-24 21:59:45 -05:00 committed by Greg Kroah-Hartman
parent 3818b4c837
commit 8111e4324c
1 changed files with 2 additions and 7 deletions

View File

@ -58,15 +58,10 @@ struct fld_stats {
__u64 fst_inflight;
};
typedef int (*fld_hash_func_t) (struct lu_client_fld *, __u64);
typedef struct lu_fld_target *
(*fld_scan_func_t) (struct lu_client_fld *, __u64);
struct lu_fld_hash {
const char *fh_name;
fld_hash_func_t fh_hash_func;
fld_scan_func_t fh_scan_func;
int (*fh_hash_func)(struct lu_client_fld *, __u64);
struct lu_fld_target *(*fh_scan_func)(struct lu_client_fld *, __u64);
};
struct fld_cache_entry {