diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-10-01 19:20:33 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-02 18:13:00 +0300 |
commit | 7cd8b1542a7ba0720c5a0a85ed414a122015228b (patch) | |
tree | 6962f17c4171f5b1024adeec66313a058a60d7a3 /drivers/ptp | |
parent | eed183abc0d3b8adb64fd1363b7cea7986cd58d6 (diff) | |
download | linux-7cd8b1542a7ba0720c5a0a85ed414a122015228b.tar.xz |
ptp_pch: Load module automatically if ID matches
The driver can't be loaded automatically because it misses
module alias to be provided. Add corresponding MODULE_DEVICE_TABLE()
call to the driver.
Fixes: 863d08ece9bf ("supports eg20t ptp clock")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ptp')
-rw-r--r-- | drivers/ptp/ptp_pch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ptp/ptp_pch.c b/drivers/ptp/ptp_pch.c index a17e8cc642c5..8070f3fd98f0 100644 --- a/drivers/ptp/ptp_pch.c +++ b/drivers/ptp/ptp_pch.c @@ -644,6 +644,7 @@ static const struct pci_device_id pch_ieee1588_pcidev_id[] = { }, {0} }; +MODULE_DEVICE_TABLE(pci, pch_ieee1588_pcidev_id); static SIMPLE_DEV_PM_OPS(pch_pm_ops, pch_suspend, pch_resume); |