Commit ca94bbab authored by Paul Bolle's avatar Paul Bolle Committed by Michael Ellerman

windfarm: make wf_critical_overtemp() static

wf_critical_overtemp() is exported. But nothing uses that export.
That's unsurprising because there's no header that defines it. Stop
exporting that function and make it static.
Signed-off-by: default avatarPaul Bolle <pebolle@tiscali.nl>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent fe2b5921
...@@ -72,7 +72,7 @@ static inline void wf_notify(int event, void *param) ...@@ -72,7 +72,7 @@ static inline void wf_notify(int event, void *param)
blocking_notifier_call_chain(&wf_client_list, event, param); blocking_notifier_call_chain(&wf_client_list, event, param);
} }
int wf_critical_overtemp(void) static int wf_critical_overtemp(void)
{ {
static char * critical_overtemp_path = "/sbin/critical_overtemp"; static char * critical_overtemp_path = "/sbin/critical_overtemp";
char *argv[] = { critical_overtemp_path, NULL }; char *argv[] = { critical_overtemp_path, NULL };
...@@ -84,7 +84,6 @@ int wf_critical_overtemp(void) ...@@ -84,7 +84,6 @@ int wf_critical_overtemp(void)
return call_usermodehelper(critical_overtemp_path, return call_usermodehelper(critical_overtemp_path,
argv, envp, UMH_WAIT_EXEC); argv, envp, UMH_WAIT_EXEC);
} }
EXPORT_SYMBOL_GPL(wf_critical_overtemp);
static int wf_thread_func(void *data) static int wf_thread_func(void *data)
{ {
......
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