diff options
author | Christophe Jaillet <christophe.jaillet@wanadoo.fr> | 2008-05-13 15:17:30 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-05-19 17:27:40 -0400 |
commit | 68b90ee7c8046864301823d8d4449eb1ce1d2f74 (patch) | |
tree | 73d078a7d5ecd8ab69cbf097d07aa8c0d9a8c1cd /drivers/ata/pata_at32.c | |
parent | b6e7b447975b0364c3430284c7b16e2e89ccf9e9 (diff) |
avr32/pata: avoid unnecessary memset (updated after comments)
Remove an explicit memset(.., 0, ...) to a variable allocated with
kzalloc (i.e. 'info').
Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/pata_at32.c')
-rw-r--r-- | drivers/ata/pata_at32.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/ata/pata_at32.c b/drivers/ata/pata_at32.c index 5e104385d6a3..82fb6e273169 100644 --- a/drivers/ata/pata_at32.c +++ b/drivers/ata/pata_at32.c | |||
@@ -291,8 +291,6 @@ static int __init pata_at32_probe(struct platform_device *pdev) | |||
291 | if (!info) | 291 | if (!info) |
292 | return -ENOMEM; | 292 | return -ENOMEM; |
293 | 293 | ||
294 | memset(info, 0, sizeof(struct at32_ide_info)); | ||
295 | |||
296 | info->irq = irq; | 294 | info->irq = irq; |
297 | info->cs = board->cs; | 295 | info->cs = board->cs; |
298 | 296 | ||