Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2bc8b06 authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab
Browse files

media: dw9714: Add Devicetree support

parent aece98a9
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -264,6 +264,12 @@ static const struct i2c_device_id dw9714_id_table[] = {

MODULE_DEVICE_TABLE(i2c, dw9714_id_table);

static const struct of_device_id dw9714_of_table[] = {
	{ .compatible = "dongwoon,dw9714" },
	{ { 0 } }
};
MODULE_DEVICE_TABLE(of, dw9714_of_table);

static const struct dev_pm_ops dw9714_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(dw9714_vcm_suspend, dw9714_vcm_resume)
	SET_RUNTIME_PM_OPS(dw9714_vcm_suspend, dw9714_vcm_resume, NULL)
@@ -274,6 +280,7 @@ static struct i2c_driver dw9714_i2c_driver = {
		.name = DW9714_NAME,
		.pm = &dw9714_pm_ops,
		.acpi_match_table = ACPI_PTR(dw9714_acpi_match),
		.of_match_table = dw9714_of_table,
	},
	.probe = dw9714_probe,
	.remove = dw9714_remove,