Commit 727543d6 authored by Spencer Baugh's avatar Spencer Baugh Committed by Greg Kroah-Hartman

staging: lustre: fix pointer whitespace style

Fix errors reported by checkpatch of this kind:
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: default avatarSpencer Baugh <sbaugh@andrew.cmu.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent db7b4b39
...@@ -103,9 +103,9 @@ enum lustre_imp_state { ...@@ -103,9 +103,9 @@ enum lustre_imp_state {
}; };
/** Returns test string representation of numeric import state \a state */ /** Returns test string representation of numeric import state \a state */
static inline char * ptlrpc_import_state_name(enum lustre_imp_state state) static inline char *ptlrpc_import_state_name(enum lustre_imp_state state)
{ {
static char* import_state_names[] = { static char *import_state_names[] = {
"<UNKNOWN>", "CLOSED", "NEW", "DISCONN", "<UNKNOWN>", "CLOSED", "NEW", "DISCONN",
"CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT", "CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT",
"RECOVER", "FULL", "EVICTED", "RECOVER", "FULL", "EVICTED",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment