浏览代码

sysctl: Use header file for sysctl knob declarations on sparc.

This also takes care of a sparse warning as scons_pwroff's definition
point.

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 16 年之前
父节点
当前提交
17f04fbb0f
共有 4 个文件被更改,包括 4 次插入3 次删除
  1. 1 0
      arch/sparc/include/asm/system_32.h
  2. 1 0
      arch/sparc/include/asm/system_64.h
  3. 1 0
      arch/sparc64/kernel/reboot.c
  4. 1 3
      kernel/sysctl.c

+ 1 - 0
arch/sparc/include/asm/system_32.h

@@ -49,6 +49,7 @@ extern unsigned long empty_zero_page;
 extern void sun_do_break(void);
 extern int serial_console;
 extern int stop_a_enabled;
+extern int scons_pwroff;
 
 static inline int con_is_present(void)
 {

+ 1 - 0
arch/sparc/include/asm/system_64.h

@@ -117,6 +117,7 @@ do {	__asm__ __volatile__("ba,pt	%%xcc, 1f\n\t" \
 
 extern void sun_do_break(void);
 extern int stop_a_enabled;
+extern int scons_pwroff;
 
 extern void fault_in_user_windows(void);
 extern void synchronize_user_stack(void);

+ 1 - 0
arch/sparc64/kernel/reboot.c

@@ -7,6 +7,7 @@
 #include <linux/module.h>
 #include <linux/pm.h>
 
+#include <asm/system.h>
 #include <asm/oplib.h>
 #include <asm/prom.h>
 

+ 1 - 3
kernel/sysctl.c

@@ -119,9 +119,7 @@ extern int sg_big_buff;
 #endif
 
 #ifdef CONFIG_SPARC
-extern char reboot_command [];
-extern int stop_a_enabled;
-extern int scons_pwroff;
+#include <asm/system.h>
 #endif
 
 #ifdef __hppa__