29 lines
1014 B
Diff
29 lines
1014 B
Diff
From 46c5a63208e3eb337da2ca8b1456a50707655e24 Mon Sep 17 00:00:00 2001
|
|
From: Andrew Lukoshko <alukoshko@almalinux.org>
|
|
Date: Tue, 9 Apr 2024 21:07:06 +0000
|
|
Subject: [PATCH] Bring back deprecated pci ids to be2iscsi driver
|
|
|
|
---
|
|
drivers/scsi/be2iscsi/be_main.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c
|
|
index 885c351fb..2d04e67e7 100644
|
|
--- a/drivers/scsi/be2iscsi/be_main.c
|
|
+++ b/drivers/scsi/be2iscsi/be_main.c
|
|
@@ -375,6 +375,11 @@ static int beiscsi_eh_device_reset(struct scsi_cmnd *sc)
|
|
|
|
/*------------------- PCI Driver operations and data ----------------- */
|
|
static const struct pci_device_id beiscsi_pci_id_table[] = {
|
|
+ { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) },
|
|
+ { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) },
|
|
+ { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
|
|
+ { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) },
|
|
+ { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID3) },
|
|
{ PCI_DEVICE(ELX_VENDOR_ID, OC_SKH_ID1) },
|
|
{ 0 }
|
|
};
|
|
--
|
|
2.27.0
|
|
|