aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre
diff options
context:
space:
mode:
authorSpencer Baugh <sbaugh@andrew.cmu.edu>2014-09-14 11:21:11 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-14 10:00:24 -0700
commit727543d639efe4abb4be8ce56a1065c32dbac918 (patch)
treec167490b76d3f0492a2eb880bea55b4b97e26482 /drivers/staging/lustre
parentstaging: lustre: fix function definition style (diff)
downloadlinux-dev-727543d639efe4abb4be8ce56a1065c32dbac918.tar.xz
linux-dev-727543d639efe4abb4be8ce56a1065c32dbac918.zip
staging: lustre: fix pointer whitespace style
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>
Diffstat (limited to 'drivers/staging/lustre')
-rw-r--r--drivers/staging/lustre/lustre/include/lustre_import.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lustre/include/lustre_import.h b/drivers/staging/lustre/lustre/include/lustre_import.h
index 7bf82e03ed63..51f3e98f94e2 100644
--- a/drivers/staging/lustre/lustre/include/lustre_import.h
+++ b/drivers/staging/lustre/lustre/include/lustre_import.h
@@ -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",