mirror of https://gitee.com/openkylin/linux.git
aacraid: Fundamental reset support for Series 7
Series 7 does not support PCI hot reset used by EEH. Enabled fundamental reset only for Series 7 Signed-off-by: Raghava Aditya Renukunta <raghavaaditya.renukunta@pmcs.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Reviewed-by: Tomas Henzl <thenzl@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
ecc479e00d
commit
6b93b7dd85
|
@ -1135,6 +1135,12 @@ static int aac_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||||
u64 dmamask;
|
u64 dmamask;
|
||||||
extern int aac_sync_mode;
|
extern int aac_sync_mode;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Only series 7 needs freset.
|
||||||
|
*/
|
||||||
|
if (pdev->device == PMC_DEVICE_S7)
|
||||||
|
pdev->needs_freset = 1;
|
||||||
|
|
||||||
list_for_each_entry(aac, &aac_devices, entry) {
|
list_for_each_entry(aac, &aac_devices, entry) {
|
||||||
if (aac->id > unique_id)
|
if (aac->id > unique_id)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue