Linux Media Controller development
 help / color / mirror / Atom feed
* [PATCH] [media] mt9v032: register v4l2 asynchronous subdevice
@ 2014-05-26 13:57 Philipp Zabel
  2014-05-28 11:16 ` Laurent Pinchart
  0 siblings, 1 reply; 3+ messages in thread
From: Philipp Zabel @ 2014-05-26 13:57 UTC (permalink / raw)
  To: Laurent Pinchart; +Cc: Mauro Carvalho Chehab, linux-media, Philipp Zabel

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 drivers/media/i2c/mt9v032.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/media/i2c/mt9v032.c b/drivers/media/i2c/mt9v032.c
index 29d8d8f..ded97c2 100644
--- a/drivers/media/i2c/mt9v032.c
+++ b/drivers/media/i2c/mt9v032.c
@@ -985,6 +985,11 @@ static int mt9v032_probe(struct i2c_client *client,
 
 	mt9v032->pad.flags = MEDIA_PAD_FL_SOURCE;
 	ret = media_entity_init(&mt9v032->subdev.entity, 1, &mt9v032->pad, 0);
+	if (ret < 0)
+		return ret;
+
+	mt9v032->subdev.dev = &client->dev;
+	ret = v4l2_async_register_subdev(&mt9v032->subdev);
 
 	if (ret < 0)
 		v4l2_ctrl_handler_free(&mt9v032->ctrls);
-- 
2.0.0.rc2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-05-28 14:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-26 13:57 [PATCH] [media] mt9v032: register v4l2 asynchronous subdevice Philipp Zabel
2014-05-28 11:16 ` Laurent Pinchart
2014-05-28 14:10   ` Philipp Zabel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox