]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ARM: dts: omap: am335x-mba335x: Fix stray '/*' in comment
authorNathan Chancellor <nathan@kernel.org>
Wed, 5 Nov 2025 20:41:09 +0000 (13:41 -0700)
committerKevin Hilman <khilman@baylibre.com>
Thu, 6 Nov 2025 00:34:40 +0000 (16:34 -0800)
When preprocessing arch/arm/boot/dts/ti/omap/am335x-mba335x.dts with
clang, there are a couple of warnings about '/*' within a block comment.

  arch/arm/boot/dts/ti/omap/am335x-mba335x.dts:260:7: warning: '/*' within block comment [-Wcomment]
    260 |                         /* /* gpmc_csn3.gpio2_0 - interrupt */
        |                            ^
  arch/arm/boot/dts/ti/omap/am335x-mba335x.dts:267:7: warning: '/*' within block comment [-Wcomment]
    267 |                         /* /* gpmc_ben1.gpio1_28 - interrupt */
        |                            ^

Remove the duplicate '/*' to clear up the warning.

Fixes: 5267fcd180b1 ("ARM: dts: omap: Add support for TQMa335x/MBa335x")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Link: https://lore.kernel.org/r/20251105-omap-mba335x-fix-clang-comment-warning-v2-1-f8a0003e1003@kernel.org
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
arch/arm/boot/dts/ti/omap/am335x-mba335x.dts

index 84dd35aeb1143477e6f585ef1aae63443b2d703f..8c0b2a1c99b1202e6859cf531b8427267cda42fc 100644 (file)
 
        expander1_pins: expander1-pins {
                pinctrl-single,pins = <
-                       /* /* gpmc_csn3.gpio2_0 - interrupt */
+                       /* gpmc_csn3.gpio2_0 - interrupt */
                        AM33XX_PADCONF(AM335X_PIN_GPMC_CSN3, PIN_INPUT_PULLUP, MUX_MODE7 )
                >;
        };
 
        expander2_pins: expander2-pins {
                pinctrl-single,pins = <
-                       /* /* gpmc_ben1.gpio1_28 - interrupt */
+                       /* gpmc_ben1.gpio1_28 - interrupt */
                        AM33XX_PADCONF(AM335X_PIN_GPMC_BEN1, PIN_INPUT_PULLUP, MUX_MODE7)
                >;
        };