diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2024-10-10 10:04:32 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2024-10-10 21:48:11 +0200 |
commit | 2a85fc7044987d751f27d7f1e4423eebbcecc2c6 (patch) | |
tree | 6930afab558a2e17d55b89f37e6973278e500137 | |
parent | 07d944b99c13c3e8bfbd7ee5d826cad722cc3591 (diff) |
pinctrl: zynqmp: drop excess struct member description
The 'node' member has never been part of this structure so drop its
description.
Fixes: 8b242ca700f8 ("pinctrl: Add Xilinx ZynqMP pinctrl driver support")
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Link: https://lore.kernel.org/20241010080432.7781-1-brgl@bgdev.pl
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/pinctrl-zynqmp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-zynqmp.c b/drivers/pinctrl/pinctrl-zynqmp.c index 2b9f8db49a15..fddf0fef4b13 100644 --- a/drivers/pinctrl/pinctrl-zynqmp.c +++ b/drivers/pinctrl/pinctrl-zynqmp.c @@ -56,7 +56,6 @@ * @name: Name of the pin mux function * @groups: List of pin groups for this function * @ngroups: Number of entries in @groups - * @node: Firmware node matching with the function * * This structure holds information about pin control function * and function group names supporting that function. |