diff options
Diffstat (limited to 'arch/sparc64/kernel/pci.c')
-rw-r--r-- | arch/sparc64/kernel/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc64/kernel/pci.c b/arch/sparc64/kernel/pci.c index 8e18fdf32a60..3070f6faecca 100644 --- a/arch/sparc64/kernel/pci.c +++ b/arch/sparc64/kernel/pci.c | |||
@@ -977,14 +977,14 @@ int pcibus_to_node(struct pci_bus *pbus) | |||
977 | EXPORT_SYMBOL(pcibus_to_node); | 977 | EXPORT_SYMBOL(pcibus_to_node); |
978 | #endif | 978 | #endif |
979 | 979 | ||
980 | /* Return the domain nuber for this pci bus */ | 980 | /* Return the domain number for this pci bus */ |
981 | 981 | ||
982 | int pci_domain_nr(struct pci_bus *pbus) | 982 | int pci_domain_nr(struct pci_bus *pbus) |
983 | { | 983 | { |
984 | struct pci_pbm_info *pbm = pbus->sysdata; | 984 | struct pci_pbm_info *pbm = pbus->sysdata; |
985 | int ret; | 985 | int ret; |
986 | 986 | ||
987 | if (pbm == NULL || pbm->parent == NULL) { | 987 | if (!pbm) { |
988 | ret = -ENXIO; | 988 | ret = -ENXIO; |
989 | } else { | 989 | } else { |
990 | ret = pbm->index; | 990 | ret = pbm->index; |