diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2015-07-20 09:58:20 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-09-03 13:07:49 +0300 |
commit | 486fcde40d8f903dbd460fb0b5a35423528032e3 (patch) | |
tree | a1ca6341400f4299870dc4ee3df795e4665123d1 /arch/mips/sibyte | |
parent | bae637a2148c97882a1bbfdac08d7a5f4441cdb3 (diff) | |
download | linux-486fcde40d8f903dbd460fb0b5a35423528032e3.tar.xz |
MIPS: Sibyte: Move bus watcher from deprecated __initcall to device_initcall
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte')
-rw-r--r-- | arch/mips/sibyte/common/bus_watcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sibyte/common/bus_watcher.c b/arch/mips/sibyte/common/bus_watcher.c index 41a1d2242211..a4e55999ecb4 100644 --- a/arch/mips/sibyte/common/bus_watcher.c +++ b/arch/mips/sibyte/common/bus_watcher.c @@ -250,4 +250,4 @@ int __init sibyte_bus_watcher(void) return 0; } -__initcall(sibyte_bus_watcher); +device_initcall(sibyte_bus_watcher); |