dect
/
linux-2.6
Archived
13
0
Fork 0

[libata] ata_piix: add missing kfree()

Noticed by Andrew Morton.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Jeff Garzik 2006-08-14 14:22:54 -04:00
parent 370ba07eb8
commit 24dd01bfbc
1 changed files with 4 additions and 0 deletions

View File

@ -932,7 +932,11 @@ static int piix_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
static void piix_host_stop(struct ata_host_set *host_set)
{
struct piix_host_priv *hpriv = host_set->private_data;
ata_host_stop(host_set);
kfree(hpriv);
}
static int __init piix_init(void)