Skip to content

Commit

Permalink
staging: lustre: fix pointer whitespace style
Browse files Browse the repository at this point in the history
Fix errors reported by checkpatch of this kind:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Spencer Baugh <sbaugh@andrew.cmu.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Spencer Baugh authored and Greg Kroah-Hartman committed Sep 14, 2014
1 parent db7b4b3 commit 727543d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/lustre/lustre/include/lustre_import.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ enum lustre_imp_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",
"CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT",
"RECOVER", "FULL", "EVICTED",
Expand Down

0 comments on commit 727543d

Please sign in to comment.