diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2005-11-07 04:01:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:54:01 -0500 |
commit | c9475cb0c358ff0dd473544280d92482df491913 (patch) | |
tree | 091617d0bdab9273d44139c86af21b7540e6d9b1 /drivers/scsi/aic7xxx_old.c | |
parent | 089b1dbbde28f0f641c20beabba28fa89ab4fab9 (diff) |
[PATCH] kfree cleanup: drivers/scsi
This is the drivers/scsi/ part of the big kfree cleanup patch.
Remove pointless checks for NULL prior to calling kfree() in drivers/scsi/.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Acked-by: Kai Makisara <kai.makisara@kolumbus.fi>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/scsi/aic7xxx_old.c')
-rw-r--r-- | drivers/scsi/aic7xxx_old.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c index 52b72d7794f5..880e2d9ffe9b 100644 --- a/drivers/scsi/aic7xxx_old.c +++ b/drivers/scsi/aic7xxx_old.c | |||
@@ -8492,8 +8492,7 @@ aic7xxx_free(struct aic7xxx_host *p) | |||
8492 | - scb_dma->dma_offset), | 8492 | - scb_dma->dma_offset), |
8493 | scb_dma->dma_address); | 8493 | scb_dma->dma_address); |
8494 | } | 8494 | } |
8495 | if (p->scb_data->scb_array[i]->kmalloc_ptr != NULL) | 8495 | kfree(p->scb_data->scb_array[i]->kmalloc_ptr); |
8496 | kfree(p->scb_data->scb_array[i]->kmalloc_ptr); | ||
8497 | p->scb_data->scb_array[i] = NULL; | 8496 | p->scb_data->scb_array[i] = NULL; |
8498 | } | 8497 | } |
8499 | 8498 | ||