diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-12-06 23:33:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:26 -0500 |
commit | 074cec54d1049ab580ecd0026623b553e0e270c4 (patch) | |
tree | 46de20e33bee156e7edb948b1d8acbf46c67c80a /arch/alpha/kernel/sys_nautilus.c | |
parent | 3869aa292fbd24103b8338937cb351459efe3f82 (diff) |
[PATCH] alpha: switch to pci_get API
Now that we have pci_get_bus_and_slot we can do the job correctly. Note that
some of these calls intentionally leak a device - this is because the device
in question is always needed from boot to reboot.
Signed-off-by: Alan Cox <alan@redhat.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/alpha/kernel/sys_nautilus.c')
-rw-r--r-- | arch/alpha/kernel/sys_nautilus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/kernel/sys_nautilus.c b/arch/alpha/kernel/sys_nautilus.c index 93744bab73fb..e7594a7cf585 100644 --- a/arch/alpha/kernel/sys_nautilus.c +++ b/arch/alpha/kernel/sys_nautilus.c | |||
@@ -200,7 +200,7 @@ nautilus_init_pci(void) | |||
200 | bus = pci_scan_bus(0, alpha_mv.pci_ops, hose); | 200 | bus = pci_scan_bus(0, alpha_mv.pci_ops, hose); |
201 | hose->bus = bus; | 201 | hose->bus = bus; |
202 | 202 | ||
203 | irongate = pci_find_slot(0, 0); | 203 | irongate = pci_get_bus_and_slot(0, 0); |
204 | bus->self = irongate; | 204 | bus->self = irongate; |
205 | bus->resource[1] = &irongate_mem; | 205 | bus->resource[1] = &irongate_mem; |
206 | 206 | ||