From: Jacek Anaszewski <j.anaszewski@samsung.com>
To: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: "Linux Media Mailing List" <linux-media@vger.kernel.org>,
"Mauro Carvalho Chehab" <mchehab@infradead.org>,
"Jonathan Corbet" <corbet@lwn.net>,
"Harry Wei" <harryxiyou@gmail.com>,
"Hans Verkuil" <hans.verkuil@cisco.com>,
"Sakari Ailus" <sakari.ailus@iki.fi>,
"Lars-Peter Clausen" <lars@metafoo.de>,
"Laurent Pinchart" <laurent.pinchart@ideasonboard.com>,
"Kyungmin Park" <kyungmin.park@samsung.com>,
"Lad, Prabhakar" <prabhakar.csengg@gmail.com>,
"Andrzej Hajda" <a.hajda@samsung.com>,
"Mats Randgaard" <matrandg@cisco.com>,
"Sylwester Nawrocki" <s.nawrocki@samsung.com>,
"Kukjin Kim" <kgene@kernel.org>,
"Krzysztof Kozlowski" <k.kozlowski@samsung.com>,
"Hyun Kwon" <hyun.kwon@xilinx.com>,
"Michal Simek" <michal.simek@xilinx.com>,
"S철ren Brinkmann" <soren.brinkmann@xilinx.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Rafael Louren챌o de Lima Chehab" <chehabrafael@gmail.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Javier Martinez Canillas" <javier@osg.samsung.com>,
"Guennadi Liakhovetski" <g.liakhovetski@gmx.de>,
"Ricardo Ribalda Delgado" <ricardo.ribalda@gmail.com>,
"Shuah Khan" <shuahkh@osg.samsung.com>,
"Junghak Sung" <jh1009.sung@samsung.com>,
"Geunyoung Kim" <nenggun.kim@samsung.com>,
"Julia Lawall" <Julia.Lawall@lip6.fr>,
"Steven Rostedt" <rostedt@goodmis.org>,
"Bryan Wu" <cooloney@gmail.com>,
"Shraddha Barke" <shraddha.6596@gmail.com>,
"Aya Mahfouz" <mahfouz.saif.elyazal@gmail.com>,
"Junsu Shin" <jjunes0@gmail.com>,
"Haneen Mohammed" <hamohammed.sa@gmail.com>,
"Navya Sri Nizamkari" <navyasri.tech@gmail.com>,
"Nicholas Mc Guire" <der.herr@hofr.at>,
"Inki Dae" <inki.dae@samsung.com>,
linux-doc@vger.kernel.org, linux-kernel@zh-kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-sh@vger.kernel.org,
devel@driverdev.osuosl.org
Subject: Re: [PATCH 03/10] media framework: rename pads init function to media_entity_pads_init()
Date: Fri, 11 Dec 2015 15:04:52 +0100 [thread overview]
Message-ID: <566AD804.5040403@samsung.com> (raw)
In-Reply-To: <063476f381aebf981106b7d134348a0a9acc67cc.1449840443.git.mchehab@osg.samsung.com>
On 12/11/2015 02:34 PM, Mauro Carvalho Chehab wrote:
> With the MC next gen rework, what's left for media_entity_init()
> is to just initialize the PADs. However, certain devices, like
> a FLASH led/light doesn't have any input or output PAD.
>
> So, there's no reason why calling media_entity_init() would be
> mandatory. Also, despite its name, what this function actually
> does is to initialize the PADs data. So, rename it to
> media_entity_pads_init() in order to reflect that.
>
> The media entity actual init happens during entity register,
> at media_device_register_entity(). We should move init of
> num_links and num_backlinks to it.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
[...]
> diff --git a/drivers/media/v4l2-core/v4l2-flash-led-class.c b/drivers/media/v4l2-core/v4l2-flash-led-class.c
> index 5c686a24712b..13d5a36bc5d8 100644
> --- a/drivers/media/v4l2-core/v4l2-flash-led-class.c
> +++ b/drivers/media/v4l2-core/v4l2-flash-led-class.c
> @@ -651,7 +651,7 @@ struct v4l2_flash *v4l2_flash_init(
> sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
> strlcpy(sd->name, config->dev_name, sizeof(sd->name));
>
> - ret = media_entity_init(&sd->entity, 0, NULL);
> + ret = media_entity_pads_init(&sd->entity, 0, NULL);
> if (ret < 0)
> return ERR_PTR(ret);
>
For this part:
Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>
--
Best Regards,
Jacek Anaszewski
next prev parent reply other threads:[~2015-12-11 14:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-11 13:34 [PATCH 00/10] Some cleanups after the Media Controller Next gen Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 01/10] media-device: put headers in alphabetic order Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 02/10] media-device: better name Kernelspace/Userspace links Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 03/10] media framework: rename pads init function to media_entity_pads_init() Mauro Carvalho Chehab
2015-12-11 14:04 ` Jacek Anaszewski [this message]
2015-12-11 13:34 ` [PATCH 04/10] media-entity.h: get rid of revision and group_id fields Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 05/10] DocBook: Move media-framework.txt contend to media-device.h Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 06/10] media-entity.h: convert media_entity_cleanup to inline Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 07/10] media-device.h: Improve documentation and update it Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 08/10] media-entity.c: remove two extra blank lines Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 09/10] media-entity: get rid of forward __media_entity_remove_link() declaration Mauro Carvalho Chehab
2015-12-11 13:34 ` [PATCH 10/10] media_entity: get rid of an unused var Mauro Carvalho Chehab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=566AD804.5040403@samsung.com \
--to=j.anaszewski@samsung.com \
--cc=Julia.Lawall@lip6.fr \
--cc=a.hajda@samsung.com \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=chehabrafael@gmail.com \
--cc=cooloney@gmail.com \
--cc=corbet@lwn.net \
--cc=der.herr@hofr.at \
--cc=devel@driverdev.osuosl.org \
--cc=g.liakhovetski@gmx.de \
--cc=gregkh@linuxfoundation.org \
--cc=hamohammed.sa@gmail.com \
--cc=hans.verkuil@cisco.com \
--cc=harryxiyou@gmail.com \
--cc=hyun.kwon@xilinx.com \
--cc=inki.dae@samsung.com \
--cc=javier@osg.samsung.com \
--cc=jh1009.sung@samsung.com \
--cc=jjunes0@gmail.com \
--cc=k.kozlowski@samsung.com \
--cc=kgene@kernel.org \
--cc=kyungmin.park@samsung.com \
--cc=lars@metafoo.de \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@zh-kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=mahfouz.saif.elyazal@gmail.com \
--cc=matrandg@cisco.com \
--cc=mchehab@infradead.org \
--cc=mchehab@osg.samsung.com \
--cc=michal.simek@xilinx.com \
--cc=navyasri.tech@gmail.com \
--cc=nenggun.kim@samsung.com \
--cc=prabhakar.csengg@gmail.com \
--cc=ricardo.ribalda@gmail.com \
--cc=rostedt@goodmis.org \
--cc=s.nawrocki@samsung.com \
--cc=sakari.ailus@iki.fi \
--cc=shraddha.6596@gmail.com \
--cc=shuahkh@osg.samsung.com \
--cc=soren.brinkmann@xilinx.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox