Commit 755312de authored by Tom Rini's avatar Tom Rini

Fix building of CONFIG_XMON && !CONFIG_MAGIC_SYSRQ

parent 25c988d9
...@@ -95,6 +95,7 @@ static unsigned long chrp_find_phys_io_base(void) ...@@ -95,6 +95,7 @@ static unsigned long chrp_find_phys_io_base(void)
} }
#endif /* CONFIG_ALL_PPC */ #endif /* CONFIG_ALL_PPC */
#ifdef CONFIG_MAGIC_SYSRQ
static void sysrq_handle_xmon(int key, struct pt_regs *regs, static void sysrq_handle_xmon(int key, struct pt_regs *regs,
struct kbd_struct *kbd, struct tty_struct *tty) struct kbd_struct *kbd, struct tty_struct *tty)
{ {
...@@ -107,6 +108,7 @@ static struct sysrq_key_op sysrq_xmon_op = ...@@ -107,6 +108,7 @@ static struct sysrq_key_op sysrq_xmon_op =
help_msg: "Xmon", help_msg: "Xmon",
action_msg: "Entering xmon\n", action_msg: "Entering xmon\n",
}; };
#endif
void void
xmon_map_scc(void) xmon_map_scc(void)
...@@ -218,7 +220,9 @@ xmon_map_scc(void) ...@@ -218,7 +220,9 @@ xmon_map_scc(void)
DLAB = 0x80; DLAB = 0x80;
#endif /* platform */ #endif /* platform */
#ifdef CONFIG_MAGIC_SYSRQ
__sysrq_put_key_op('x', &sysrq_xmon_op); __sysrq_put_key_op('x', &sysrq_xmon_op);
#endif
} }
static int scc_initialized = 0; static int scc_initialized = 0;
......
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