Commit b008e65c authored by Teodora Baluta's avatar Teodora Baluta Committed by Greg Kroah-Hartman

staging: lustre: remove space between function name and open parenthesis

This fixes the following checkpatch.pl warnings:

WARNING: space prohibited between function name and open parenthesis '('
Signed-off-by: default avatarTeodora Baluta <teobaluta@gmail.com>
Reviewed-by: default avatarLisa Nguyen <lisa@xenapiadmin.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 33700ac7
......@@ -60,7 +60,7 @@ static int libcfs_nidstring_idx = 0;
static spinlock_t libcfs_nidstring_lock;
void libcfs_init_nidstrings (void)
void libcfs_init_nidstrings(void)
{
spin_lock_init(&libcfs_nidstring_lock);
}
......@@ -69,7 +69,7 @@ void libcfs_init_nidstrings (void)
# define NIDSTR_UNLOCK(f) spin_unlock_irqrestore(&libcfs_nidstring_lock, f)
static char *
libcfs_next_nidstring (void)
libcfs_next_nidstring(void)
{
char *str;
unsigned long flags;
......@@ -475,7 +475,7 @@ libcfs_str2nid(const char *str)
sep = str + strlen(str);
net = LNET_MKNET(SOCKLND, 0);
nf = libcfs_lnd2netstrfns(SOCKLND);
LASSERT (nf != NULL);
LASSERT(nf != NULL);
}
if (!nf->nf_str2addr(str, (int)(sep - str), &addr))
......
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