summaryrefslogtreecommitdiffstats
path: root/include/linux/proc_compat.h
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2011-11-11 09:03:31 -0800
committerBrian Behlendorf <[email protected]>2011-11-11 09:18:28 -0800
commit1114ae6ae74a287478cd8a34770fc4a907f84134 (patch)
treed3752a329ba7f41f0be72ca2ff6e558b25b77fd2 /include/linux/proc_compat.h
parent948914d2f10f6bf274bb51b96dd5337f01165b45 (diff)
Prepend spl_ to all init/fini functions
This is a bit of cleanup I'd been meaning to get to for a while to reduce the chance of a type conflict. Well that conflict finally occurred with the kstat_init() function which conflicts with a function in the 2.6.32-6-pve kernel. Signed-off-by: Brian Behlendorf <[email protected]> Closes #56
Diffstat (limited to 'include/linux/proc_compat.h')
-rw-r--r--include/linux/proc_compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/proc_compat.h b/include/linux/proc_compat.h
index 97d3c6c5a..3d8eda108 100644
--- a/include/linux/proc_compat.h
+++ b/include/linux/proc_compat.h
@@ -47,7 +47,7 @@ struct proc_dir_entry *proc_dir_entry_find(struct proc_dir_entry *root,
const char *str);
int proc_dir_entries(struct proc_dir_entry *root);
-int proc_init(void);
-void proc_fini(void);
+int spl_proc_init(void);
+void spl_proc_fini(void);
#endif /* SPL_PROC_H */