Commit 4135f9d2 authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley

[SCSI] aic7xxx_old: fix accidental logic reversal

Commit bbfbbbc1 accidentally reversed
the logic of this NULL check.

Spotted by the Coverity checker.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 875baf3c
......@@ -8417,7 +8417,7 @@ aic7xxx_alloc(struct scsi_host_template *sht, struct aic7xxx_host *temp)
p->host = host;
p->scb_data = kzalloc(sizeof(scb_data_type), GFP_ATOMIC);
if (!p->scb_data)
if (p->scb_data)
{
scbq_init (&p->scb_data->free_scbs);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment