Devicetree
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Antoine Bouyer" <antoine.bouyer@nxp.com>
Cc: devicetree@vger.kernel.org, conor+dt@kernel.org, robh@kernel.org,
	krzk+dt@kernel.org, Frank.Li@kernel.org, imx@lists.linux.dev
Subject: Re: [PATCH v2 5/8] media: Documentation: Add NXP neoisp driver documentation
Date: Tue, 12 May 2026 05:04:08 +0000	[thread overview]
Message-ID: <20260512050408.C428EC2BCB0@smtp.kernel.org> (raw)
In-Reply-To: <20260511132629.1300868-6-antoine.bouyer@nxp.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Incorrect use of single backticks will cause Sphinx build warnings due to unresolved cross-references.
--

commit 930837ef3aa44bc2f8f8a827637c74321c6a1710
Author: Antoine Bouyer <antoine.bouyer@nxp.com>

media: Documentation: Add NXP neoisp driver documentation

This commit adds documentation for the NXP neoisp driver, describing its
hardware pipeline, media topology, and userspace API. It introduces new
ReST files and diagrams in the admin-guide and userspace-api sections.

> diff --git a/Documentation/admin-guide/media/nxp-neoisp.rst b/Documentation/admin-guide/media/nxp-neoisp.rst
> new file mode 100644
> index 0000000000000..16117112b701e
> --- /dev/null
> +++ b/Documentation/admin-guide/media/nxp-neoisp.rst

[ ... ]

> +Neoisp driver
> +=============
> +
> +Neoisp driver is located under drivers/media/platform/nxp/neoisp.
> +It uses the `V4L2 API` and the `V4L2 subdev API` to register capture and output
> +video devices in addition to a subdevice for neoisp that connects the video
> +devices into a media graph realized using the `Media Controller (MC) API`.

This isn't a bug, but does the use of single backticks here cause Sphinx
build warnings?

In the kernel documentation environment, the default Sphinx role interprets
single backticks as cross-references. If there are no existing reference
targets for these strings, the build will emit undefined label warnings.

Should these use double backticks to format them as literal text instead?

[ ... ]

> +neoisp-params
> +-------------
> +
> +The neoisp-params output meta device receives configuration data to be written
> +to Neoisp registers and internal memory for desired input image processing.
> +This v4l2 device accepts the generic `extensible parameters` format.

Could this single backtick usage for the extensible parameters format also
cause an undefined label warning?

[ ... ]

> +Control
> +=======
> +
> +To support additional neoisp hardware revisions, the read-only bitmask control
> +`V4L2_CID_NEOISP_SUPPORTED_PARAMS_BLOCKS` can be used to query the list of
> +supported blocks. Each bit represents the availability of the corresponding

Will this single backtick usage for V4L2_CID_NEOISP_SUPPORTED_PARAMS_BLOCKS
similarly trigger documentation build warnings?

[ ... ]

> diff --git a/Documentation/userspace-api/media/v4l/metafmt-nxp-neoisp.rst b/Documentation/userspace-api/media/v4l/metafmt-nxp-neoisp.rst
> new file mode 100644
> index 0000000000000..5a1b0c555a03e
> --- /dev/null
> +++ b/Documentation/userspace-api/media/v4l/metafmt-nxp-neoisp.rst

[ ... ]

> +Extensible parameters configuration format
> +==========================================
> +
> +When using the `extensible parameters` configuration format, parameters are
> +passed to the :ref:`neoisp-params <neoisp_params>` metadata output video node
> +using the `V4L2_META_FMT_NEO_ISP_EXT_PARAMS` meta format.

There are a few more instances of single backticks here. Should these be
converted to double backticks as well to avoid Sphinx warnings?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260511132629.1300868-1-antoine.bouyer@nxp.com?part=5

  reply	other threads:[~2026-05-12  5:04 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-11 13:26 [PATCH v2 0/8] media: Add iMX95 neoisp driver Antoine Bouyer
2026-05-11 13:26 ` [PATCH v2 1/8] dt-bindings: media: Add nxp neoisp support Antoine Bouyer
2026-05-11 16:26   ` Conor Dooley
2026-05-11 13:26 ` [PATCH v2 2/8] media: v4l2-ctrls: Add user control base for NXP neoisp controls Antoine Bouyer
2026-05-11 13:26 ` [PATCH v2 3/8] media: Add meta formats supported by NXP neoisp driver Antoine Bouyer
2026-05-11 13:26 ` [PATCH v2 4/8] media: uapi: Add NXP NEOISP user interface header file Antoine Bouyer
2026-05-12  4:47   ` sashiko-bot
2026-05-11 13:26 ` [PATCH v2 5/8] media: Documentation: Add NXP neoisp driver documentation Antoine Bouyer
2026-05-12  5:04   ` sashiko-bot [this message]
2026-05-11 13:26 ` [PATCH v2 6/8] media: platform: Add NXP Neoisp Image Signal Processor Antoine Bouyer
2026-05-11 14:43   ` Antoine Bouyer
2026-05-12  5:29   ` sashiko-bot
2026-05-11 13:26 ` [PATCH v2 7/8] media: platform: neoisp: Add debugfs support Antoine Bouyer
2026-05-12  5:47   ` sashiko-bot
2026-05-11 13:26 ` [PATCH v2 8/8] arm64: dts: freescale: imx95: Add NXP neoisp device tree node Antoine Bouyer

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=20260512050408.C428EC2BCB0@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=Frank.Li@kernel.org \
    --cc=antoine.bouyer@nxp.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=imx@lists.linux.dev \
    --cc=krzk+dt@kernel.org \
    --cc=robh@kernel.org \
    --cc=sashiko@lists.linux.dev \
    /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