diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2015-07-20 10:10:20 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-09-03 13:07:50 +0300 |
commit | 1249ed3540809d30d1fe42c94276a9db2845d173 (patch) | |
tree | 1513d4c3a02933bc07b7f19118a8a4049b564dc8 /arch/mips/math-emu | |
parent | 1bab0b627f6d9cd5af08f6be81288883d3b1aa9c (diff) | |
download | linux-1249ed3540809d30d1fe42c94276a9db2845d173.tar.xz |
MIPS: math-emu: Move from deprecated __initcall to arch_initcall.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu')
-rw-r--r-- | arch/mips/math-emu/me-debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/me-debugfs.c b/arch/mips/math-emu/me-debugfs.c index f308e0f05fc5..506a67a98cdf 100644 --- a/arch/mips/math-emu/me-debugfs.c +++ b/arch/mips/math-emu/me-debugfs.c @@ -65,4 +65,4 @@ do { \ return 0; } -__initcall(debugfs_fpuemu); +arch_initcall(debugfs_fpuemu); |