mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
ipc: use device_initcall
... since __initcall is now deprecated. Signed-off-by: Davidlohr Bueso <davidlohr@hp.com> Cc: Manfred Spraul <manfred@colorfullife.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
187841a800
commit
6d08a2567c
3 changed files with 3 additions and 3 deletions
|
@ -128,7 +128,7 @@ static int __init ipc_init(void)
|
|||
register_ipcns_notifier(&init_ipc_ns);
|
||||
return 0;
|
||||
}
|
||||
__initcall(ipc_init);
|
||||
device_initcall(ipc_init);
|
||||
|
||||
/**
|
||||
* ipc_init_ids - initialise ipc identifiers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue