diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-02-01 05:11:25 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-02-01 05:11:25 +0100 |
commit | bcf39352eb9e9026f7a1028d4bce3707b65f104b (patch) | |
tree | 440794a7fe888c48bfb49bdd994873ae8a136866 /arch/sh/drivers/pci/pci-dreamcast.c | |
parent | sh: Enable PCI66 support for SH7780 host controller. (diff) | |
download | linux-bcf39352eb9e9026f7a1028d4bce3707b65f104b.tar.xz linux-bcf39352eb9e9026f7a1028d4bce3707b65f104b.zip |
sh: Handle PCI controller resource conflicts.
register_pci_controller() can fail, but presently is a void function.
Change this over to an int so that we can bail early before continuing on
with post-registration initialization (such as throwing the controller in
to 66MHz mode in the case of the SH7780 host controller).
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci/pci-dreamcast.c')
-rw-r--r-- | arch/sh/drivers/pci/pci-dreamcast.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/sh/drivers/pci/pci-dreamcast.c b/arch/sh/drivers/pci/pci-dreamcast.c index 210f9d4af141..bd5a1e50ebf6 100644 --- a/arch/sh/drivers/pci/pci-dreamcast.c +++ b/arch/sh/drivers/pci/pci-dreamcast.c @@ -95,8 +95,6 @@ static int __init gapspci_init(void) outl(0x00002001, GAPSPCI_BBA_CONFIG+0x10); outl(0x01000000, GAPSPCI_BBA_CONFIG+0x14); - register_pci_controller(&dreamcast_pci_controller); - - return 0; + return register_pci_controller(&dreamcast_pci_controller); } arch_initcall(gapspci_init); |