Commit 95285933 authored by Rashika Kheria's avatar Rashika Kheria Committed by Borislav Petkov

EDAC: Mark edac_create_debug_nodes as static

This patch marks the function edac_create_debug_nodes() as static
because it is not used outside of edac_mc_sysfs.c.

Thus, it also eliminates the following warning:
drivers/edac/edac_mc_sysfs.c:917:5: warning: no previous prototype for ‘edac_create_debug_nodes’ [-Wmissing-prototypes]
Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Link: http://lkml.kernel.org/r/a1c863b08c0d6f67d03280cf908c771bf26a3239.1387029387.git.rashika.kheria@gmail.comSigned-off-by: default avatarBorislav Petkov <bp@suse.de>
parent d1ea71cd
...@@ -914,7 +914,7 @@ void __exit edac_debugfs_exit(void) ...@@ -914,7 +914,7 @@ void __exit edac_debugfs_exit(void)
debugfs_remove(edac_debugfs); debugfs_remove(edac_debugfs);
} }
int edac_create_debug_nodes(struct mem_ctl_info *mci) static int edac_create_debug_nodes(struct mem_ctl_info *mci)
{ {
struct dentry *d, *parent; struct dentry *d, *parent;
char name[80]; char name[80];
......
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