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: upstream/snapshot3+hdmi~24329^2~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaf611426d4b9ad0d0a30c0a8d414380128720af;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 963a976..95eb083 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);