ARM: exynos: pinmux: fix parentheses alignments
authorHenrik Grimler <henrik@grimler.se>
Fri, 22 Aug 2025 18:54:39 +0000 (20:54 +0200)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 1 Sep 2025 09:27:17 +0000 (18:27 +0900)
For multi-line commands the lines should preferably be aligned with
the opening parenthesis.

Signed-off-by: Henrik Grimler <henrik@grimler.se>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
arch/arm/mach-exynos/pinmux.c

index 48c3251..bd82e1a 100644 (file)
@@ -102,7 +102,7 @@ static int exynos5_mmc_config(int peripheral, int flags)
        }
        if ((flags & PINMUX_FLAG_8BIT_MODE) && !start_ext) {
                debug("SDMMC device %d does not support 8bit mode",
-                               peripheral);
+                     peripheral);
                return -1;
        }
        if (flags & PINMUX_FLAG_8BIT_MODE) {
@@ -902,7 +902,7 @@ static int exynos4_pinmux_decode_periph_id(const void *blob, int node)
        u32 cell[3];
 
        err = fdtdec_get_int_array(blob, node, "interrupts", cell,
-                                       ARRAY_SIZE(cell));
+                                  ARRAY_SIZE(cell));
        if (err) {
                debug(" invalid peripheral id\n");
                return PERIPH_ID_NONE;
@@ -917,7 +917,7 @@ static int exynos5_pinmux_decode_periph_id(const void *blob, int node)
        u32 cell[3];
 
        err = fdtdec_get_int_array(blob, node, "interrupts", cell,
-                                       ARRAY_SIZE(cell));
+                                  ARRAY_SIZE(cell));
        if (err)
                return PERIPH_ID_NONE;