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-mptspi-pci-id-table-changes.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-mptspi-pci-id-table-changes.patch')
-rw-r--r-- | 0001-mptspi-pci-id-table-changes.patch | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/0001-mptspi-pci-id-table-changes.patch b/0001-mptspi-pci-id-table-changes.patch deleted file mode 100644 index c480cadd2..000000000 --- a/0001-mptspi-pci-id-table-changes.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Laura Abbott <labbott@redhat.com> -Date: Thu, 2 Jan 2020 14:24:45 -0500 -Subject: [PATCH] mptspi: pci-id table changes - -Author: Tomas Henzl <thenzl@redhat.com> -Date: Thu Jan 10 16:11:44 2019 -0500 - - [message] mptspi: pci-id table changes - - Message-id: <20190110161145.5117-3-thenzl@redhat.com> - Patchwork-id: 237190 - O-Subject: [RHEL-8.0 e-stor 2/3] mptspi: pci-id table changes - Bugzilla: 1651803 - RH-Acked-by: Maurizio Lombardi <mlombard@redhat.com> - RH-Acked-by: Jarod Wilson <jarod@redhat.com> - RH-Acked-by: Chris Leech <cleech@redhat.com> - - RHEL-only - We want to provide this driver only for the virtualisation use case, - so we remove all other entries from the pci-id table and add only the - single entry needed for virtualisation. - - Signed-off-by: Herton R. Krzesinski <herton@redhat.com> - -Upstream Status: RHEL only -Signed-off-by: Laura Abbott <labbott@redhat.com> ---- - drivers/message/fusion/mptspi.c | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/drivers/message/fusion/mptspi.c b/drivers/message/fusion/mptspi.c -index c028f5944694..1f458e35effb 100644 ---- a/drivers/message/fusion/mptspi.c -+++ b/drivers/message/fusion/mptspi.c -@@ -1238,12 +1238,17 @@ static struct spi_function_template mptspi_transport_functions = { - */ - - static struct pci_device_id mptspi_pci_table[] = { -+#ifdef CONFIG_RHEL_DIFFERENCES -+ { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVID_53C1030, -+ PCI_VENDOR_ID_VMWARE, PCI_ANY_ID }, -+#else - { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVID_53C1030, - PCI_ANY_ID, PCI_ANY_ID }, - { PCI_VENDOR_ID_ATTO, MPI_MANUFACTPAGE_DEVID_53C1030, - PCI_ANY_ID, PCI_ANY_ID }, - { PCI_VENDOR_ID_LSI_LOGIC, MPI_MANUFACTPAGE_DEVID_53C1035, - PCI_ANY_ID, PCI_ANY_ID }, -+#endif - {0} /* Terminating entry */ - }; - MODULE_DEVICE_TABLE(pci, mptspi_pci_table); --- -2.28.0 - |