summaryrefslogtreecommitdiff
path: root/drivers/pinctrl/pinmux.h
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2024-05-30 11:55:20 +0300
committerLinus Walleij <linus.walleij@linaro.org>2024-06-17 09:25:11 +0200
commitc501b780c17fd10b172ba61fdebc20ddb8f27149 (patch)
treea31b12568425d833da9e9b9c5be6351a127d3a22 /drivers/pinctrl/pinmux.h
parent6273a1b1cee1c62440c2193b1a0737c15a977726 (diff)
downloadlwn-c501b780c17fd10b172ba61fdebc20ddb8f27149.tar.gz
lwn-c501b780c17fd10b172ba61fdebc20ddb8f27149.zip
pinctrl: pinmux: Remove unused members from struct function_desc
All drivers are converted to use embedded struct pinfunction. Remove unused members from struct function_desc. Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://lore.kernel.org/r/20240530085745.1539925-12-andy.shevchenko@gmail.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinmux.h')
-rw-r--r--drivers/pinctrl/pinmux.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/pinctrl/pinmux.h b/drivers/pinctrl/pinmux.h
index 9b57c1cc9d50..2965ec20b77f 100644
--- a/drivers/pinctrl/pinmux.h
+++ b/drivers/pinctrl/pinmux.h
@@ -134,16 +134,10 @@ static inline void pinmux_init_device_debugfs(struct dentry *devroot,
/**
* struct function_desc - generic function descriptor
* @func: generic data of the pin function (name and groups of pins)
- * @name: name of the function
- * @group_names: array of pin group names
- * @num_group_names: number of pin group names
* @data: pin controller driver specific data
*/
struct function_desc {
struct pinfunction func;
- const char *name;
- const char * const *group_names;
- int num_group_names;
void *data;
};
@@ -151,9 +145,6 @@ struct function_desc {
#define PINCTRL_FUNCTION_DESC(_name, _grps, _num_grps, _data) \
(struct function_desc) { \
.func = PINCTRL_PINFUNCTION(_name, _grps, _num_grps), \
- .name = _name, \
- .group_names = _grps, \
- .num_group_names = _num_grps, \
.data = _data, \
}