Make sure of_device_id tables are NULL terminated. Fixes: 0db7e807fa68 ("PCI: mobiveil: Add Mobiveil PCIe Host Bridge IP driver") Signed-off-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx> --- drivers/pci/host/pcie-mobiveil.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/host/pcie-mobiveil.c b/drivers/pci/host/pcie-mobiveil.c index f3fbe9d..4d6c20e 100644 --- a/drivers/pci/host/pcie-mobiveil.c +++ b/drivers/pci/host/pcie-mobiveil.c @@ -845,6 +845,7 @@ static int mobiveil_pcie_probe(struct platform_device *pdev) static const struct of_device_id mobiveil_pcie_of_match[] = { {.compatible = "mbvl,gpex40-pcie",}, + {}, }; MODULE_DEVICE_TABLE(of, mobiveil_pcie_of_match);