]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: lustre: fix pointer whitespace style
authorSpencer Baugh <sbaugh@andrew.cmu.edu>
Sun, 14 Sep 2014 15:21:11 +0000 (11:21 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 Sep 2014 17:00:24 +0000 (10:00 -0700)
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>
drivers/staging/lustre/lustre/include/lustre_import.h

index 7bf82e03ed6329e78253486612aa88e09d43471f..51f3e98f94e288be73c2f8bb22729dbc2d4aa28a 100644 (file)
@@ -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 charimport_state_names[] = {
+       static char *import_state_names[] = {
                "<UNKNOWN>", "CLOSED",  "NEW", "DISCONN",
                "CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT",
                "RECOVER", "FULL", "EVICTED",