summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSakari Ailus <sakari.ailus@linux.intel.com>2020-02-11 22:32:36 +0100
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-12-03 10:41:31 +0100
commitaf1eed0ccd8691b8eb25dcc659fbea7c07730ce5 (patch)
treec50ce677ab3590bd38a9431681568a47ef41d52e /drivers
parent67b8dc1d0c4a82a8001e36f8763aba5b754e6601 (diff)
media: ccs: Remove the I²C ID table
The I²C ID table is no longer needed; remove it. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/i2c/ccs/ccs-core.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c
index bb712d71b8c8..bb3759e2534c 100644
--- a/drivers/media/i2c/ccs/ccs-core.c
+++ b/drivers/media/i2c/ccs/ccs-core.c
@@ -3262,12 +3262,6 @@ static const struct of_device_id 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 = {
SET_SYSTEM_SLEEP_PM_OPS(ccs_suspend, ccs_resume)
SET_RUNTIME_PM_OPS(ccs_power_off, ccs_power_on, NULL)
@@ -3282,7 +3276,6 @@ static struct i2c_driver ccs_i2c_driver = {
},
.probe_new = ccs_probe,
.remove = ccs_remove,
- .id_table = ccs_id_table,
};
static int ccs_module_init(void)