Skip to content

Commit

Permalink
i7core_edac: explicitly remove PCI devices from the devices list
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Oct 24, 2010
1 parent 41ba6c1 commit 39300e7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/edac/i7core_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1240,16 +1240,17 @@ static void i7core_put_devices(struct i7core_dev *i7core_dev)
pci_dev_put(pdev);
}
kfree(i7core_dev->pdev);
list_del(&i7core_dev->list);
kfree(i7core_dev);
}

static void i7core_put_all_devices(void)
{
struct i7core_dev *i7core_dev, *tmp;

list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list)
list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list) {
i7core_put_devices(i7core_dev);
list_del(&i7core_dev->list);
kfree(i7core_dev);
}
}

static void __init i7core_xeon_pci_fixup(const struct pci_id_table *table)
Expand Down Expand Up @@ -1438,7 +1439,6 @@ static int i7core_get_devices(const struct pci_id_table *table)
}

return 0;
return 0;
}

static int mci_bind_devs(struct mem_ctl_info *mci,
Expand Down Expand Up @@ -2092,6 +2092,8 @@ static void __devexit i7core_remove(struct pci_dev *pdev)
/* Release PCI resources */
i7core_put_devices(i7core_dev);
}
list_del(&i7core_dev->list);
kfree(i7core_dev);
}
probed--;

Expand Down

0 comments on commit 39300e7

Please sign in to comment.