Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87acf5ad authored by Dzianis Kahanovich's avatar Dzianis Kahanovich Committed by Rusty Russell
Browse files

NULL-terminate all pci_device_id tables



NULL-terminating pci_device_id in pch_dma.c and scx200_acb.c
for appying MODULE_DEVICE_TABLE (to publish modalias-es).

Signed-off-by: default avatarDzianis Kahanovich <mahatma@eu.by>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent abbce906
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -926,6 +926,7 @@ static void __devexit pch_dma_remove(struct pci_dev *pdev)
static const struct pci_device_id pch_dma_id_table[] = {
	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_DMA_8CH), 8 },
	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_DMA_4CH), 4 },
	{ 0, },
};

static struct pci_driver pch_dma_driver = {
+2 −1
Original line number Diff line number Diff line
@@ -560,7 +560,8 @@ static const struct pci_device_id scx200_pci[] __initconst = {
	{ PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA),
	  .driver_data = 1 },
	{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA),
	  .driver_data = 2 }
	  .driver_data = 2 },
	{ 0, }
};

static struct {