Commit 102caad9 authored by Axel Lin's avatar Axel Lin Committed by Linus Walleij

pinctrl: tegra: Staticize non-exported symbols

They are not referenced outside of this file, make them static.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 896a95ba
...@@ -178,8 +178,9 @@ static int add_config(struct device *dev, unsigned long **configs, ...@@ -178,8 +178,9 @@ static int add_config(struct device *dev, unsigned long **configs,
return 0; return 0;
} }
void tegra_pinctrl_dt_free_map(struct pinctrl_dev *pctldev, static void tegra_pinctrl_dt_free_map(struct pinctrl_dev *pctldev,
struct pinctrl_map *map, unsigned num_maps) struct pinctrl_map *map,
unsigned num_maps)
{ {
int i; int i;
...@@ -209,7 +210,7 @@ static const struct cfg_param { ...@@ -209,7 +210,7 @@ static const struct cfg_param {
{"nvidia,slew-rate-rising", TEGRA_PINCONF_PARAM_SLEW_RATE_RISING}, {"nvidia,slew-rate-rising", TEGRA_PINCONF_PARAM_SLEW_RATE_RISING},
}; };
int tegra_pinctrl_dt_subnode_to_map(struct device *dev, static int tegra_pinctrl_dt_subnode_to_map(struct device *dev,
struct device_node *np, struct device_node *np,
struct pinctrl_map **map, struct pinctrl_map **map,
unsigned *reserved_maps, unsigned *reserved_maps,
...@@ -288,9 +289,10 @@ int tegra_pinctrl_dt_subnode_to_map(struct device *dev, ...@@ -288,9 +289,10 @@ int tegra_pinctrl_dt_subnode_to_map(struct device *dev,
return ret; return ret;
} }
int tegra_pinctrl_dt_node_to_map(struct pinctrl_dev *pctldev, static int tegra_pinctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
struct device_node *np_config, struct device_node *np_config,
struct pinctrl_map **map, unsigned *num_maps) struct pinctrl_map **map,
unsigned *num_maps)
{ {
unsigned reserved_maps; unsigned reserved_maps;
struct device_node *np; struct device_node *np;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment