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

Commit e4422943 authored by Joshua Baldock's avatar Joshua Baldock Committed by Greg Kroah-Hartman
Browse files

Staging: lustre: Fixed syntax errors reported by checkpatch.pl script for file types.h



Added space after ',' and moved '{' to same line as struct as instructed by checkpatch.pl script.

Signed-off-by: default avatarJoshua Baldock <joshua.baldock@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f0bd2c46
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ static inline void LNetInvalidateHandle(lnet_handle_any_t *h)
 */
static inline int LNetHandleIsEqual (lnet_handle_any_t h1, lnet_handle_any_t h2)
{
	return (h1.cookie == h2.cookie);
	return h1.cookie == h2.cookie;
}

/**
@@ -122,7 +122,7 @@ static inline int LNetHandleIsEqual (lnet_handle_any_t h1, lnet_handle_any_t h2)
 */
static inline int LNetHandleIsInvalid(lnet_handle_any_t h)
{
	return (LNET_WIRE_HANDLE_COOKIE_NONE == h.cookie);
	return LNET_WIRE_HANDLE_COOKIE_NONE == h.cookie;
}

/**