diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2020-10-07 09:54:44 -0500 |
---|---|---|
committer | Justin M. Forbes <jforbes@fedoraproject.org> | 2020-10-07 09:54:44 -0500 |
commit | f7a55ba381de17d8e5511a97441944b797aa62a5 (patch) | |
tree | df2cb85063e94e396b776ea25c0e4b5f9f286c39 /0001-qla4xxx-Remove-deprecated-PCI-IDs-from-RHEL-8.patch | |
parent | 5f7d08ee5f8b230f5dfb20783ec265ef40387520 (diff) | |
download | kernel-f7a55ba381de17d8e5511a97441944b797aa62a5.tar.gz kernel-f7a55ba381de17d8e5511a97441944b797aa62a5.tar.xz kernel-f7a55ba381de17d8e5511a97441944b797aa62a5.zip |
kernel-5.9.0-0.rc8.20201007git7575fdda569b.29
* Wed Oct 07 2020 Fedora Kernel Team <kernel-team@fedoraproject.org> [5.9.0-0.rc8.20201007git7575fdda569b.29]
- Merge ark-patches
Resolves: rhbz#
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to '0001-qla4xxx-Remove-deprecated-PCI-IDs-from-RHEL-8.patch')
-rw-r--r-- | 0001-qla4xxx-Remove-deprecated-PCI-IDs-from-RHEL-8.patch | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/0001-qla4xxx-Remove-deprecated-PCI-IDs-from-RHEL-8.patch b/0001-qla4xxx-Remove-deprecated-PCI-IDs-from-RHEL-8.patch deleted file mode 100644 index 1afd52baf..000000000 --- a/0001-qla4xxx-Remove-deprecated-PCI-IDs-from-RHEL-8.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Chad Dupuis <cdupuis@redhat.com> -Date: Thu, 2 Jan 2020 14:24:39 -0500 -Subject: [PATCH] qla4xxx: Remove deprecated PCI IDs from RHEL 8 - -Message-id: <1524063895-23086-1-git-send-email-cdupuis@redhat.com> -Patchwork-id: 209742 -O-Subject: [RHEL 8 e-stor PATCH] qla4xxx: Remove depricated PCI IDs from RHEL 8. -Bugzilla: 1518874 -RH-Acked-by: Tomas Henzl <thenzl@redhat.com> -RH-Acked-by: Jarod Wilson <jarod@redhat.com> - -Bugzilla: 1518874 - -RHEL 8 specific - -Brew build: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID822250 - -Three PCI device IDs are marked as deprecated in RHEL 7: - -PCI_DEVICE_ID_QLOGIC_ISP8022 -PCI_DEVICE_ID_QLOGIC_ISP8324 -PCI_DEVICE_ID_QLOGIC_ISP8042 - -This patch removes them from the PCI table in RHEL 8 so the -qla4xxx driver will not bind to the hardware. - -Upstream Status: RHEL only -Signed-off-by: Herton R. Krzesinski <herton@redhat.com> ---- - drivers/scsi/qla4xxx/ql4_os.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c -index bab87e47b238..70545ee26c9c 100644 ---- a/drivers/scsi/qla4xxx/ql4_os.c -+++ b/drivers/scsi/qla4xxx/ql4_os.c -@@ -9868,6 +9868,7 @@ static struct pci_device_id qla4xxx_pci_tbl[] = { - .subvendor = PCI_ANY_ID, - .subdevice = PCI_ANY_ID, - }, -+#ifndef CONFIG_RHEL_DIFFERENCES - { - .vendor = PCI_VENDOR_ID_QLOGIC, - .device = PCI_DEVICE_ID_QLOGIC_ISP8022, -@@ -9886,6 +9887,7 @@ static struct pci_device_id qla4xxx_pci_tbl[] = { - .subvendor = PCI_ANY_ID, - .subdevice = PCI_ANY_ID, - }, -+#endif - {0, 0}, - }; - MODULE_DEVICE_TABLE(pci, qla4xxx_pci_tbl); --- -2.28.0 - |