From: Johan Hovold <johan@kernel.org>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Dikshita Agarwal <quic_dikshita@quicinc.com>,
quic_vgarodia@quicinc.com, mchehab@kernel.org, robh@kernel.org,
krzk+dt@kernel.org, p.zabel@pengutronix.de, hverkuil@xs4all.nl,
sebastian.fricke@collabora.com, bryan.odonoghue@linaro.org,
neil.armstrong@linaro.org, nicolas@ndufresne.ca,
u.kleine-koenig@baylibre.com, stefan.schmidt@linaro.org,
lujianhua000@gmail.com, linux-arm-msm@vger.kernel.org,
linux-media@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, krzysztof.kozlowski@linaro.org
Subject: Re: [RFC PATCH v10 1/2] media: iris: introduce helper module to select video driver
Date: Tue, 4 Feb 2025 10:35:02 +0100 [thread overview]
Message-ID: <Z6HfRiqTQqb6sJVS@hovoldconsulting.com> (raw)
In-Reply-To: <0708dbf1-5914-4372-9df2-5cf590fd7bd6@kernel.org>
On Mon, Feb 03, 2025 at 05:34:20PM +0100, Krzysztof Kozlowski wrote:
> On 03/02/2025 16:16, Dmitry Baryshkov wrote:
> > On Mon, Feb 03, 2025 at 09:22:51AM +0100, Johan Hovold wrote:
> >> On Fri, Jan 31, 2025 at 10:44:28AM -0800, Abhinav Kumar wrote:
> >>> On 1/29/2025 2:44 AM, Krzysztof Kozlowski wrote:
> >>>> On 28/01/2025 09:04, Dikshita Agarwal wrote:
> >>>>> @@ -196,6 +196,9 @@ static int iris_probe(struct platform_device *pdev)
> >>>>> u64 dma_mask;
> >>>>> int ret;
> >>>>>
> >>>>> + if (!video_drv_should_bind(&pdev->dev, true))
> >>>>> + return -ENODEV;
> >>>>
> >>>> Wouldn't it mark the probe as failed and cause dmesg regressions?
> >>
> >> No, this is perfectly fine. Probe can return -ENODEV and driver core
> >> will continue with any further matches.
> >>> 2) with current approach, one of the probes (either venus or iris) will
> >>> certainly fail as video_drv_should_bind() will fail for one of them.
> >>> This can be considered as a regression and should not happen.
> >>
> >> How can that be a regression? One driver must fail to probe (see above).
> >
> > I also don't think that it's a regression. I think Krzysztof was
> > concerned about the 'failed to bind' messages in dmesg.
>
> I never used word "regression" alone. I said "dmesg regression", which
> means you have error in logs or any system facility which provides you
> self-information about device probe history. I don't remember if -ENODEV
> leads to any printks, so maybe I am wrong here, but regardless normal
> and expected operation of a driver should never result in -ERRNO, except
> deferred probe of course.
A probe function returning -ENODEV is not an error and is used to signal
that the driver should not bind to the device it has just probed. So
that part is perfectly fine here as I mentioned above.
Johan
next prev parent reply other threads:[~2025-02-04 9:34 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-28 8:04 [RFC PATCH v10 0/2] Add helper module to select video driver Dikshita Agarwal
2025-01-28 8:04 ` [RFC PATCH v10 1/2] media: iris: introduce " Dikshita Agarwal
2025-01-28 16:14 ` Dmitry Baryshkov
2025-01-29 9:53 ` Dikshita Agarwal
2025-01-29 11:27 ` Dmitry Baryshkov
2025-01-29 10:44 ` Krzysztof Kozlowski
2025-01-31 18:44 ` Abhinav Kumar
2025-02-03 8:22 ` Johan Hovold
2025-02-03 15:16 ` Dmitry Baryshkov
2025-02-03 16:34 ` Krzysztof Kozlowski
2025-02-04 9:35 ` Johan Hovold [this message]
2025-02-04 9:31 ` Johan Hovold
2025-02-04 14:55 ` Dmitry Baryshkov
2025-02-04 16:00 ` Johan Hovold
2025-02-04 23:09 ` Dmitry Baryshkov
2025-02-05 6:17 ` Dikshita Agarwal
2025-02-05 8:30 ` Johan Hovold
2025-02-04 15:08 ` Vikash Garodia
2025-02-04 16:05 ` Johan Hovold
2025-01-28 8:04 ` [RFC PATCH v10 2/2] media: iris: enable video driver probe of SM8250 SoC Dikshita Agarwal
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=Z6HfRiqTQqb6sJVS@hovoldconsulting.com \
--to=johan@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=hverkuil@xs4all.nl \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=lujianhua000@gmail.com \
--cc=mchehab@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=nicolas@ndufresne.ca \
--cc=p.zabel@pengutronix.de \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_dikshita@quicinc.com \
--cc=quic_vgarodia@quicinc.com \
--cc=robh@kernel.org \
--cc=sebastian.fricke@collabora.com \
--cc=stefan.schmidt@linaro.org \
--cc=u.kleine-koenig@baylibre.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