Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 426652f2 authored by Oleg Drokin's avatar Oleg Drokin Committed by Greg Kroah-Hartman
Browse files

staging/lustre: Get rid of loc_flags_t typedef



Replace it with direct reference of enum loc_flags

Signed-off-by: default avatarOleg Drokin <green@linuxhacker.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fef74397
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -164,11 +164,11 @@ struct lu_device_operations {
/**
 * For lu_object_conf flags
 */
typedef enum {
enum loc_flags {
	/* This is a new object to be allocated, or the file
	 * corresponding to the object does not exists. */
	LOC_F_NEW	= 0x00000001,
} loc_flags_t;
};

/**
 * Object configuration, describing particulars of object being created. On
@@ -179,7 +179,7 @@ struct lu_object_conf {
	/**
	 * Some hints for obj find and alloc.
	 */
	loc_flags_t     loc_flags;
	enum loc_flags     loc_flags;
};

/**