diff options
| -rw-r--r-- | arch/powerpc/platforms/pseries/iommu.c | 2 | ||||
| -rw-r--r-- | arch/ppc64/kernel/pci_dn.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index 9e90d41131d8..a73faafaac8c 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c | |||
| @@ -498,7 +498,7 @@ static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long acti | |||
| 498 | 498 | ||
| 499 | switch (action) { | 499 | switch (action) { |
| 500 | case PSERIES_RECONFIG_REMOVE: | 500 | case PSERIES_RECONFIG_REMOVE: |
| 501 | if (pci->iommu_table && | 501 | if (pci && pci->iommu_table && |
| 502 | get_property(np, "ibm,dma-window", NULL)) | 502 | get_property(np, "ibm,dma-window", NULL)) |
| 503 | iommu_free_table(np); | 503 | iommu_free_table(np); |
| 504 | break; | 504 | break; |
diff --git a/arch/ppc64/kernel/pci_dn.c b/arch/ppc64/kernel/pci_dn.c index 493bbe43f5b4..1a443a7ada4c 100644 --- a/arch/ppc64/kernel/pci_dn.c +++ b/arch/ppc64/kernel/pci_dn.c | |||
| @@ -181,13 +181,14 @@ EXPORT_SYMBOL(fetch_dev_dn); | |||
| 181 | static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node) | 181 | static int pci_dn_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node) |
| 182 | { | 182 | { |
| 183 | struct device_node *np = node; | 183 | struct device_node *np = node; |
| 184 | struct pci_dn *pci; | 184 | struct pci_dn *pci = NULL; |
| 185 | int err = NOTIFY_OK; | 185 | int err = NOTIFY_OK; |
| 186 | 186 | ||
| 187 | switch (action) { | 187 | switch (action) { |
| 188 | case PSERIES_RECONFIG_ADD: | 188 | case PSERIES_RECONFIG_ADD: |
| 189 | pci = np->parent->data; | 189 | pci = np->parent->data; |
| 190 | update_dn_pci_info(np, pci->phb); | 190 | if (pci) |
| 191 | update_dn_pci_info(np, pci->phb); | ||
| 191 | break; | 192 | break; |
| 192 | default: | 193 | default: |
| 193 | err = NOTIFY_DONE; | 194 | err = NOTIFY_DONE; |
