mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
media: i2c: dw9719: Remove unused i2c device id table
Nothing depends on the I²C device ID table, so remove it. Signed-off-by: André Apitzsch <git@apitzsch.eu> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
This commit is contained in:
parent
36e98b0406
commit
15faf0fa14
|
|
@ -360,13 +360,6 @@ static void dw9719_remove(struct i2c_client *client)
|
||||||
pm_runtime_set_suspended(&client->dev);
|
pm_runtime_set_suspended(&client->dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct i2c_device_id dw9719_id_table[] = {
|
|
||||||
{ "dw9719" },
|
|
||||||
{ "dw9761" },
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
MODULE_DEVICE_TABLE(i2c, dw9719_id_table);
|
|
||||||
|
|
||||||
static DEFINE_RUNTIME_DEV_PM_OPS(dw9719_pm_ops, dw9719_suspend, dw9719_resume,
|
static DEFINE_RUNTIME_DEV_PM_OPS(dw9719_pm_ops, dw9719_suspend, dw9719_resume,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
|
|
@ -377,7 +370,6 @@ static struct i2c_driver dw9719_i2c_driver = {
|
||||||
},
|
},
|
||||||
.probe = dw9719_probe,
|
.probe = dw9719_probe,
|
||||||
.remove = dw9719_remove,
|
.remove = dw9719_remove,
|
||||||
.id_table = dw9719_id_table,
|
|
||||||
};
|
};
|
||||||
module_i2c_driver(dw9719_i2c_driver);
|
module_i2c_driver(dw9719_i2c_driver);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user