Commit 95433bad authored by Mark Haverkamp's avatar Mark Haverkamp Committed by James Bottomley

[SCSI] aacraid: Fix error in max_channel field

Received from Mark Salyzyn

The max_channel field is set one too large.
Signed-off-by: default avatarMark Haverkamp <markh@osdl.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent e61b17fd
...@@ -907,9 +907,9 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, ...@@ -907,9 +907,9 @@ static int __devinit aac_probe_one(struct pci_dev *pdev,
* physical channels are address by their actual physical number+1 * physical channels are address by their actual physical number+1
*/ */
if (aac->nondasd_support == 1) if (aac->nondasd_support == 1)
shost->max_channel = aac->maximum_num_channels + 1; shost->max_channel = aac->maximum_num_channels;
else else
shost->max_channel = 1; shost->max_channel = 0;
aac_get_config_status(aac); aac_get_config_status(aac);
aac_get_containers(aac); aac_get_containers(aac);
......
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