Commit e2e2eabb authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Thomas Gleixner

x86/platform/intel-mid: Move watchdog registration to arch_initcall()

There is no need to choose a random initcall level for certainly
architecture dependent code.

Move watchdog registration to arch_initcall() from rootfs_initcall().
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: http://lkml.kernel.org/r/20170119192425.189899-5-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 93953395
......@@ -82,4 +82,4 @@ static int __init register_mid_wdt(void)
return 0;
}
rootfs_initcall(register_mid_wdt);
arch_initcall(register_mid_wdt);
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