]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
pinctrl: tegra: Fix whitespace issues for improved readability
authorThierry Reding <treding@nvidia.com>
Thu, 19 Mar 2020 12:27:32 +0000 (13:27 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 27 Mar 2020 10:41:04 +0000 (11:41 +0100)
Fix a few whitespace inconsistencies to make the code easier to read.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20200319122737.3063291-5-thierry.reding@gmail.com
Tested-by: Vidya Sagar <vidyas@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/tegra/pinctrl-tegra194.c

index daf44cf240c901250b5f1b12e6325a0c06901ed5..d4e84530158c91851cc03a49e6c0b68e70c3340d 100644 (file)
@@ -59,6 +59,7 @@ enum tegra_mux_dt {
        {                                       \
                .name = #lid,                   \
        }
+
 static struct tegra_function tegra194_functions[] = {
        TEGRA_PIN_FUNCTION(rsvd0),
        TEGRA_PIN_FUNCTION(rsvd1),
@@ -70,7 +71,7 @@ static struct tegra_function tegra194_functions[] = {
 #define DRV_PINGROUP_ENTRY_Y(r, drvdn_b, drvdn_w, drvup_b,     \
                             drvup_w, slwr_b, slwr_w, slwf_b,   \
                             slwf_w, bank)                      \
-               .drv_reg = ((r)),                       \
+               .drv_reg = ((r)),                               \
                .drv_bank = bank,                               \
                .drvdn_bit = drvdn_b,                           \
                .drvdn_width = drvdn_w,                         \
@@ -89,7 +90,7 @@ static struct tegra_function tegra194_functions[] = {
                .hsm_bit = -1,                                  \
                .mux_bank = bank,                               \
                .mux_bit = 0,                                   \
-               .pupd_reg = ((r)),              \
+               .pupd_reg = ((r)),                              \
                .pupd_bank = bank,                              \
                .pupd_bit = 2,                                  \
                .tri_reg = ((r)),                               \
@@ -109,20 +110,20 @@ static struct tegra_function tegra194_functions[] = {
 
 #define PINGROUP(pg_name, f0, f1, f2, f3, r, bank, pupd, e_lpbk,       \
                 e_input, e_lpdr, e_od, schmitt_b, drvtype, io_rail)    \
-       {                                                       \
-               .name = #pg_name,                               \
-               .pins = pg_name##_pins,                         \
-               .npins = ARRAY_SIZE(pg_name##_pins),            \
-                       .funcs = {                              \
-                               TEGRA_MUX_##f0,                 \
-                               TEGRA_MUX_##f1,                 \
-                               TEGRA_MUX_##f2,                 \
-                               TEGRA_MUX_##f3,                 \
-                       },                                      \
-               PIN_PINGROUP_ENTRY_Y(r, bank, pupd, e_lpbk,     \
-                                    e_input, e_od,             \
-                                    schmitt_b, drvtype),       \
-               drive_##pg_name,                                \
+       {                                                               \
+               .name = #pg_name,                                       \
+               .pins = pg_name##_pins,                                 \
+               .npins = ARRAY_SIZE(pg_name##_pins),                    \
+                       .funcs = {                                      \
+                               TEGRA_MUX_##f0,                         \
+                               TEGRA_MUX_##f1,                         \
+                               TEGRA_MUX_##f2,                         \
+                               TEGRA_MUX_##f3,                         \
+                       },                                              \
+               PIN_PINGROUP_ENTRY_Y(r, bank, pupd, e_lpbk,             \
+                                    e_input, e_od,                     \
+                                    schmitt_b, drvtype),               \
+               drive_##pg_name,                                        \
        }
 
 static const struct tegra_pingroup tegra194_groups[] = {