From: Brian Vandre Date: Thu, 4 Dec 2014 04:06:55 +0000 (-0600) Subject: staging: lustre: fld: fixed symbol was not declared X-Git-Tag: v4.0-rc1~82^2~336 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=41f53d5739bd4d9b41688bd5532be4c489bd485e;p=karo-tx-linux.git staging: lustre: fld: fixed symbol was not declared Fixes the sparse warning: "warning: symbol 'fld_type_proc_dir' was not declared. Should it be static?" Also removes initialization to NULL. Signed-off-by: Brian Vandre Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/fld/fld_request.c b/drivers/staging/lustre/lustre/fld/fld_request.c index 0d361ff43212..7801db0e79ce 100644 --- a/drivers/staging/lustre/lustre/fld/fld_request.c +++ b/drivers/staging/lustre/lustre/fld/fld_request.c @@ -269,7 +269,7 @@ int fld_client_del_target(struct lu_client_fld *fld, __u64 idx) } EXPORT_SYMBOL(fld_client_del_target); -struct proc_dir_entry *fld_type_proc_dir = NULL; +static struct proc_dir_entry *fld_type_proc_dir; #if defined (CONFIG_PROC_FS) static int fld_client_proc_init(struct lu_client_fld *fld)