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: Teodora Baluta <teobaluta@gmail.com>
Reviewed-by: Lisa Nguyen <lisa@xenapiadmin.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Teodora Baluta 2013-11-05 18:36:45 +02:00 committed by Greg Kroah-Hartman
parent 33700ac776
commit b008e65cc2

View File

@ -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))