diff options
Diffstat (limited to 'drivers/ide/ide-probe.c')
-rw-r--r-- | drivers/ide/ide-probe.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index 482f41f3f15e..6d57b7cd5424 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c | |||
@@ -39,8 +39,6 @@ | |||
39 | #include <asm/uaccess.h> | 39 | #include <asm/uaccess.h> |
40 | #include <asm/io.h> | 40 | #include <asm/io.h> |
41 | 41 | ||
42 | static ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */ | ||
43 | |||
44 | /** | 42 | /** |
45 | * generic_id - add a generic drive id | 43 | * generic_id - add a generic drive id |
46 | * @drive: drive to make an ID block for | 44 | * @drive: drive to make an ID block for |
@@ -1583,15 +1581,18 @@ struct ide_host *ide_host_alloc_all(const struct ide_port_info *d, | |||
1583 | if (hws[i] == NULL) | 1581 | if (hws[i] == NULL) |
1584 | continue; | 1582 | continue; |
1585 | 1583 | ||
1584 | hwif = kzalloc(sizeof(*hwif), GFP_KERNEL); | ||
1585 | if (hwif == NULL) | ||
1586 | continue; | ||
1587 | |||
1586 | idx = ide_find_port_slot(d); | 1588 | idx = ide_find_port_slot(d); |
1587 | if (idx < 0) { | 1589 | if (idx < 0) { |
1588 | printk(KERN_ERR "%s: no free slot for interface\n", | 1590 | printk(KERN_ERR "%s: no free slot for interface\n", |
1589 | d ? d->name : "ide"); | 1591 | d ? d->name : "ide"); |
1592 | kfree(hwif); | ||
1590 | continue; | 1593 | continue; |
1591 | } | 1594 | } |
1592 | 1595 | ||
1593 | hwif = &ide_hwifs[idx]; | ||
1594 | |||
1595 | ide_init_port_data(hwif, idx); | 1596 | ide_init_port_data(hwif, idx); |
1596 | 1597 | ||
1597 | host->ports[i] = hwif; | 1598 | host->ports[i] = hwif; |
@@ -1755,6 +1756,7 @@ void ide_host_remove(struct ide_host *host) | |||
1755 | 1756 | ||
1756 | ide_unregister(hwif); | 1757 | ide_unregister(hwif); |
1757 | ide_free_port_slot(hwif->index); | 1758 | ide_free_port_slot(hwif->index); |
1759 | kfree(hwif); | ||
1758 | } | 1760 | } |
1759 | 1761 | ||
1760 | kfree(host); | 1762 | kfree(host); |