Commit fdc9be12 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Andi Shyti

i2c: designware: Add missing 'c' into PCI IDs variable name

Add missing 'c' into i2c_designware_pci_ids variable name.
Acked-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarAndi Shyti <andi.shyti@kernel.org>
Signed-off-by: default avatarAndi Shyti <andi.shyti@kernel.org>
parent c2587420
...@@ -355,7 +355,7 @@ static void i2c_dw_pci_remove(struct pci_dev *pdev) ...@@ -355,7 +355,7 @@ static void i2c_dw_pci_remove(struct pci_dev *pdev)
i2c_del_adapter(&dev->adapter); i2c_del_adapter(&dev->adapter);
} }
static const struct pci_device_id i2_designware_pci_ids[] = { static const struct pci_device_id i2c_designware_pci_ids[] = {
/* Medfield */ /* Medfield */
{ PCI_VDEVICE(INTEL, 0x0817), medfield }, { PCI_VDEVICE(INTEL, 0x0817), medfield },
{ PCI_VDEVICE(INTEL, 0x0818), medfield }, { PCI_VDEVICE(INTEL, 0x0818), medfield },
...@@ -403,16 +403,16 @@ static const struct pci_device_id i2_designware_pci_ids[] = { ...@@ -403,16 +403,16 @@ static const struct pci_device_id i2_designware_pci_ids[] = {
{ PCI_VDEVICE(ATI, 0x7464), navi_amd }, { PCI_VDEVICE(ATI, 0x7464), navi_amd },
{ 0,} { 0,}
}; };
MODULE_DEVICE_TABLE(pci, i2_designware_pci_ids); MODULE_DEVICE_TABLE(pci, i2c_designware_pci_ids);
static struct pci_driver dw_i2c_driver = { static struct pci_driver dw_i2c_driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
.id_table = i2_designware_pci_ids,
.probe = i2c_dw_pci_probe, .probe = i2c_dw_pci_probe,
.remove = i2c_dw_pci_remove, .remove = i2c_dw_pci_remove,
.driver = { .driver = {
.pm = &i2c_dw_pm_ops, .pm = &i2c_dw_pm_ops,
}, },
.id_table = i2c_designware_pci_ids,
}; };
module_pci_driver(dw_i2c_driver); module_pci_driver(dw_i2c_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment