watchdog: Fix section mismatch and potential undefined behavior.

Commit d9ca07a05ce1 ("watchdog: Avoid kernel crash when disabling
watchdog") introduces a section mismatch.

Now that we reference no_watchdog from non-__init code it can no longer
be __initdata.

Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Cc: Stephane Eranian <eranian@google.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by David Daney and committed by Linus Torvalds 433039e9 4b4a2700

+1 -1
+1 -1
kernel/watchdog.c
··· 43 static DEFINE_PER_CPU(struct perf_event *, watchdog_ev); 44 #endif 45 46 - static int __initdata no_watchdog; 47 48 49 /* boot commands */
··· 43 static DEFINE_PER_CPU(struct perf_event *, watchdog_ev); 44 #endif 45 46 + static int no_watchdog; 47 48 49 /* boot commands */