Commit af1eed0c authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab

media: ccs: Remove the I²C ID table

The I²C ID table is no longer needed; remove it.
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 67b8dc1d
...@@ -3262,12 +3262,6 @@ static const struct of_device_id ccs_of_table[] = { ...@@ -3262,12 +3262,6 @@ static const struct of_device_id ccs_of_table[] = {
}; };
MODULE_DEVICE_TABLE(of, ccs_of_table); MODULE_DEVICE_TABLE(of, ccs_of_table);
static const struct i2c_device_id ccs_id_table[] = {
{ SMIAPP_NAME, 0 },
{ },
};
MODULE_DEVICE_TABLE(i2c, ccs_id_table);
static const struct dev_pm_ops ccs_pm_ops = { static const struct dev_pm_ops ccs_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(ccs_suspend, ccs_resume) SET_SYSTEM_SLEEP_PM_OPS(ccs_suspend, ccs_resume)
SET_RUNTIME_PM_OPS(ccs_power_off, ccs_power_on, NULL) SET_RUNTIME_PM_OPS(ccs_power_off, ccs_power_on, NULL)
...@@ -3282,7 +3276,6 @@ static struct i2c_driver ccs_i2c_driver = { ...@@ -3282,7 +3276,6 @@ static struct i2c_driver ccs_i2c_driver = {
}, },
.probe_new = ccs_probe, .probe_new = ccs_probe,
.remove = ccs_remove, .remove = ccs_remove,
.id_table = ccs_id_table,
}; };
static int ccs_module_init(void) static int ccs_module_init(void)
......
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