diff options
Diffstat (limited to 'drivers/pci/hotplug/cpqphp_ctrl.c')
-rw-r--r-- | drivers/pci/hotplug/cpqphp_ctrl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/cpqphp_ctrl.c b/drivers/pci/hotplug/cpqphp_ctrl.c index 11845b796799..f593585f2784 100644 --- a/drivers/pci/hotplug/cpqphp_ctrl.c +++ b/drivers/pci/hotplug/cpqphp_ctrl.c | |||
@@ -709,7 +709,8 @@ static struct pci_resource *get_max_resource(struct pci_resource **head, u32 siz | |||
709 | temp = temp->next; | 709 | temp = temp->next; |
710 | } | 710 | } |
711 | 711 | ||
712 | temp->next = max->next; | 712 | if (temp) |
713 | temp->next = max->next; | ||
713 | } | 714 | } |
714 | 715 | ||
715 | max->next = NULL; | 716 | max->next = NULL; |