From 2ecae960349c68360744ed3cba0c47ad18b402cc Mon Sep 17 00:00:00 2001 From: eabdullin Date: Tue, 11 Mar 2025 10:22:08 +0300 Subject: [PATCH] Enable all disabled pci devices by moving to unmaintained --- kernel/rh_messages.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/rh_messages.h b/kernel/rh_messages.h index 647d7b9a4..483824c9c 100644 --- a/kernel/rh_messages.h +++ b/kernel/rh_messages.h @@ -123,6 +123,10 @@ static const struct pci_device_id rh_deprecated_pci_devices[] = { }; static const struct pci_device_id rh_disabled_pci_devices[] = { + {0} /* Terminating entry */ +}; + +static const struct pci_device_id rh_unmaintained_pci_devices[] = { { 0x1011, 0x0046, 0x103c, 0x10c2 }, { 0x1011, 0x0046, 0x9005, 0x0364 }, { 0x1011, 0x0046, 0x9005, 0x0365 }, @@ -288,10 +292,6 @@ static const struct pci_device_id rh_disabled_pci_devices[] = { { 0x1077, 0x8022, PCI_ANY_ID, PCI_ANY_ID }, { 0x1077, 0x8032, PCI_ANY_ID, PCI_ANY_ID }, { 0x1077, 0x8042, PCI_ANY_ID, PCI_ANY_ID }, - {0} /* Terminating entry */ -}; - -static const struct pci_device_id rh_unmaintained_pci_devices[] = { { 0x10df, 0xe220, PCI_ANY_ID, PCI_ANY_ID }, { 0x10df, 0x0724, PCI_ANY_ID, PCI_ANY_ID }, { 0x10df, 0xe200, PCI_ANY_ID, PCI_ANY_ID }, -- 2.39.5 (Apple Git-154)