mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
pata_sc1200: Fix crash on boot
The SC1200 needs a NULL terminator or it may cause a crash on boot. Bug #14227 Also correct a bogus comment as the driver had serializing added so can run dual port. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
f4b31db92d
commit
6d4f950e9e
1 changed files with 1 additions and 2 deletions
|
@ -235,8 +235,7 @@ static int sc1200_init_one(struct pci_dev *dev, const struct pci_device_id *id)
|
||||||
.udma_mask = ATA_UDMA2,
|
.udma_mask = ATA_UDMA2,
|
||||||
.port_ops = &sc1200_port_ops
|
.port_ops = &sc1200_port_ops
|
||||||
};
|
};
|
||||||
/* Can't enable port 2 yet, see top comments */
|
const struct ata_port_info *ppi[] = { &info, NULL };
|
||||||
const struct ata_port_info *ppi[] = { &info, };
|
|
||||||
|
|
||||||
return ata_pci_sff_init_one(dev, ppi, &sc1200_sht, NULL);
|
return ata_pci_sff_init_one(dev, ppi, &sc1200_sht, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue