aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2008-05-11 16:58:53 -0400
committerJesse Barnes <jbarnes@virtuousgeek.org>2008-06-10 13:59:46 -0400
commiteaf611426d4b9ad0d0a30c0a8d414380128720af (patch)
tree0718854a0c1d1e23b31c7e7101ac587ebc4bacff
parent19792a0859f96e9fc8ce87d97b269bcb895389e5 (diff)
PCI: Replace deprecated __initcall with device_initcall.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r--drivers/pci/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c
index 963a97642ae9..95eb08328793 100644
--- a/drivers/pci/proc.c
+++ b/drivers/pci/proc.c
@@ -482,5 +482,5 @@ static int __init pci_proc_init(void)
482 return 0; 482 return 0;
483} 483}
484 484
485__initcall(pci_proc_init); 485device_initcall(pci_proc_init);
486 486