From: Spencer Baugh Date: Sun, 14 Sep 2014 15:21:11 +0000 (-0400) Subject: staging: lustre: fix pointer whitespace style X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~9526^2~442 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=727543d639efe4abb4be8ce56a1065c32dbac918;p=mirror_ubuntu-artful-kernel.git 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 Signed-off-by: Greg Kroah-Hartman --- 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[] = { "", "CLOSED", "NEW", "DISCONN", "CONNECTING", "REPLAY", "REPLAY_LOCKS", "REPLAY_WAIT", "RECOVER", "FULL", "EVICTED",