From: James Simmons Date: Thu, 17 Nov 2016 19:35:48 +0000 (-0500) Subject: staging: lustre: lnet: replace uninitialized_var X-Git-Tag: v4.10-rc1~148^2~202 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c54f79916cd2779138ce5b2563b89998b17db9da;p=karo-tx-linux.git staging: lustre: lnet: replace uninitialized_var Checkpatch for some reason doesn't like the way libcfs_str2net_internal. Lets just replace it with nf being set to NULL instead Signed-off-by: James Simmons Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/lnet/nidstrings.c b/drivers/staging/lustre/lnet/lnet/nidstrings.c index 63379f7241ef..e1f1ca8f8860 100644 --- a/drivers/staging/lustre/lnet/lnet/nidstrings.c +++ b/drivers/staging/lustre/lnet/lnet/nidstrings.c @@ -1156,7 +1156,7 @@ EXPORT_SYMBOL(libcfs_nid2str_r); static struct netstrfns * libcfs_str2net_internal(const char *str, __u32 *net) { - struct netstrfns *uninitialized_var(nf); + struct netstrfns *nf = NULL; int nob; unsigned int netnum; int i;