diff options
author | Andy Shevchenko <[email protected]> | 2022-11-09 17:23:56 +0200 |
---|---|---|
committer | Linus Walleij <[email protected]> | 2022-11-10 10:53:25 +0100 |
commit | 802e19a066c40017321a0717817785d861aedc53 (patch) | |
tree | e069c07dcbde054ad1dd3e74e45eff77286cf21d | |
parent | c12c19877b56a1e4e12d2076b1b85f85071df4de (diff) |
pinctrl: Put space between type and data in compound literal
It's slightly better to read when compound literal data and type
are separated by a space.
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Basavaraj Natikar <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Linus Walleij <[email protected]>
-rw-r--r-- | include/linux/pinctrl/pinctrl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pinctrl/pinctrl.h b/include/linux/pinctrl/pinctrl.h index 31fe992412f0..a0d39b303431 100644 --- a/include/linux/pinctrl/pinctrl.h +++ b/include/linux/pinctrl/pinctrl.h @@ -40,7 +40,7 @@ struct pingroup { /* Convenience macro to define a single named or anonymous pingroup */ #define PINCTRL_PINGROUP(_name, _pins, _npins) \ -(struct pingroup){ \ +(struct pingroup) { \ .name = _name, \ .pins = _pins, \ .npins = _npins, \ |