Skip to content
Permalink
Browse files
pinctrl: add one more "const" for generic function groups
Generic code doesn't modify those strings and .get_function_groups
callback has that extra "const" as well. This allows more flexibility in
GENERIC_PINMUX_FUNCTIONS users.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
  • Loading branch information
Rafał Miłecki authored and intel-lab-lkp committed Dec 15, 2021
1 parent b124c8b commit e4338a6ad34998afb60c5ad294aafa06cd7110a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
@@ -875,7 +875,7 @@ EXPORT_SYMBOL_GPL(pinmux_generic_get_function);
*/
int pinmux_generic_add_function(struct pinctrl_dev *pctldev,
const char *name,
const char **groups,
const char * const *groups,
const unsigned int num_groups,
void *data)
{
@@ -129,7 +129,7 @@ static inline void pinmux_init_device_debugfs(struct dentry *devroot,
*/
struct function_desc {
const char *name;
const char **group_names;
const char * const *group_names;
int num_group_names;
void *data;
};
@@ -150,7 +150,7 @@ struct function_desc *pinmux_generic_get_function(struct pinctrl_dev *pctldev,

int pinmux_generic_add_function(struct pinctrl_dev *pctldev,
const char *name,
const char **groups,
const char * const *groups,
unsigned const num_groups,
void *data);

0 comments on commit e4338a6

Please sign in to comment.