From: Akinobu Mita Date: Tue, 8 Jan 2019 14:51:42 +0000 (-0200) Subject: media: mt9m001: add of_match_table X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1e57e4ce90f4190b989670fe1b161995b5b5f333;p=openwrt%2Fstaging%2Fblogic.git media: mt9m001: add of_match_table Add of_match_table for the MT9M001 CMOS image sensor. Cc: Guennadi Liakhovetski Signed-off-by: Akinobu Mita Signed-off-by: Sakari Ailus Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/mt9m001.c b/drivers/media/i2c/mt9m001.c index dc6cf46ed8d0..3864d884b8c3 100644 --- a/drivers/media/i2c/mt9m001.c +++ b/drivers/media/i2c/mt9m001.c @@ -738,9 +738,16 @@ static const struct i2c_device_id mt9m001_id[] = { }; MODULE_DEVICE_TABLE(i2c, mt9m001_id); +static const struct of_device_id mt9m001_of_match[] = { + { .compatible = "onnn,mt9m001", }, + { /* sentinel */ }, +}; +MODULE_DEVICE_TABLE(of, mt9m001_of_match); + static struct i2c_driver mt9m001_i2c_driver = { .driver = { .name = "mt9m001", + .of_match_table = mt9m001_of_match, }, .probe = mt9m001_probe, .remove = mt9m001_remove,