From: Robert P. J. Day Date: Sun, 11 May 2008 20:58:53 +0000 (-0400) Subject: PCI: Replace deprecated __initcall with device_initcall. X-Git-Tag: v2.6.27-rc1~1046^2~67 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaf611426d4b9ad0d0a30c0a8d414380128720af;p=linux-2.6 PCI: Replace deprecated __initcall with device_initcall. Signed-off-by: Robert P. J. Day Signed-off-by: Jesse Barnes --- diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c index 963a97642a..95eb083287 100644 --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c @@ -482,5 +482,5 @@ static int __init pci_proc_init(void) return 0; } -__initcall(pci_proc_init); +device_initcall(pci_proc_init);