From: Robin Murphy <robin.murphy@arm.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
Joerg Roedel <joro@8bytes.org>, Will Deacon <will@kernel.org>,
Yong Wu <yong.wu@mediatek.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>
Cc: iommu@lists.linux.dev, linux-kernel@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 1/3] iommu: omap: Drop redundant check if ti,syscon-mmuconfig exists
Date: Tue, 24 Jun 2025 18:15:21 +0100 [thread overview]
Message-ID: <bc1b7891-d2d4-4104-b52d-dfa956e0a6a3@arm.com> (raw)
In-Reply-To: <20250624-syscon-phandle-args-iommu-v3-1-1a36487d69b8@linaro.org>
On 2025-06-24 1:22 pm, Krzysztof Kozlowski wrote:
> The syscon_regmap_lookup_by_phandle() will fail if property does not
> exist, so doing of_property_read_bool() earlier is redundant. Drop that
> check and move error message to syscon_regmap_lookup_by_phandle() error
> case while converting it to dev_err_probe().
Sure, may as well.
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> drivers/iommu/omap-iommu.c | 14 +++-----------
> 1 file changed, 3 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c
> index 3c62337f43c67720a15b67e8b610da7886f6f39c..4448c0a512137c79195112eea25d762266c77bc3 100644
> --- a/drivers/iommu/omap-iommu.c
> +++ b/drivers/iommu/omap-iommu.c
> @@ -1123,23 +1123,15 @@ static int omap_iommu_dra7_get_dsp_system_cfg(struct platform_device *pdev,
> struct omap_iommu *obj)
> {
> struct device_node *np = pdev->dev.of_node;
> - int ret;
>
> if (!of_device_is_compatible(np, "ti,dra7-dsp-iommu"))
> return 0;
>
> - if (!of_property_read_bool(np, "ti,syscon-mmuconfig")) {
> - dev_err(&pdev->dev, "ti,syscon-mmuconfig property is missing\n");
> - return -EINVAL;
> - }
> -
> obj->syscfg =
> syscon_regmap_lookup_by_phandle(np, "ti,syscon-mmuconfig");
> - if (IS_ERR(obj->syscfg)) {
> - /* can fail with -EPROBE_DEFER */
> - ret = PTR_ERR(obj->syscfg);
> - return ret;
> - }
> + if (IS_ERR(obj->syscfg))
> + return dev_err_probe(&pdev->dev, PTR_ERR(obj->syscfg),
> + "ti,syscon-mmuconfig property is missing\n");
>
> if (of_property_read_u32_index(np, "ti,syscon-mmuconfig", 1,
> &obj->id)) {
>
next prev parent reply other threads:[~2025-06-24 17:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-24 12:22 [PATCH v3 0/3] iommu: omap: Simplify few things Krzysztof Kozlowski
2025-06-24 12:22 ` [PATCH v3 1/3] iommu: omap: Drop redundant check if ti,syscon-mmuconfig exists Krzysztof Kozlowski
2025-06-24 17:15 ` Robin Murphy [this message]
2025-06-24 12:22 ` [PATCH v3 2/3] iommu: omap: Use syscon_regmap_lookup_by_phandle_args Krzysztof Kozlowski
2025-06-24 12:22 ` [PATCH v3 3/3] iommu: mtk_iommu_v1: Simplify by dropping local 'mtk_mapping' variable Krzysztof Kozlowski
2025-06-24 17:36 ` Robin Murphy
2025-06-27 7:22 ` [PATCH v3 0/3] iommu: omap: Simplify few things Joerg Roedel
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=bc1b7891-d2d4-4104-b52d-dfa956e0a6a3@arm.com \
--to=robin.murphy@arm.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=will@kernel.org \
--cc=yong.wu@mediatek.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
all inboxes | Powered by JetHome®