diff options
author | Linus Walleij | 2014-09-05 09:53:23 +0200 |
---|---|---|
committer | Linus Walleij | 2014-09-05 10:33:25 +0200 |
commit | 9e3a979f03b37b8502da6cfce8581e28375cf96f (patch) | |
tree | 5b661dcacd09e635d5b066d4a4007f424c30b141 /drivers/pinctrl/pinctrl-single.c | |
parent | pinctrl: at91: update for drive strength options and tweaks (diff) | |
download | kernel-qcow2-linux-9e3a979f03b37b8502da6cfce8581e28375cf96f.tar.gz kernel-qcow2-linux-9e3a979f03b37b8502da6cfce8581e28375cf96f.tar.xz kernel-qcow2-linux-9e3a979f03b37b8502da6cfce8581e28375cf96f.zip |
pinctrl: single: fix freudian slip
commit 03e9f0cac5da6af85758276cb4624caf5911f2b9
"pinctrl: clean up after enable refactoring"
renamed the vtable callback .enable to .set_mux. The
renaming was done manually, and one of the alterations
contained a freudian slip. I confess, I am human.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-single.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-single.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c index 9032422ad18f..fb94b772ad62 100644 --- a/drivers/pinctrl/pinctrl-single.c +++ b/drivers/pinctrl/pinctrl-single.c @@ -519,7 +519,7 @@ static const struct pinmux_ops pcs_pinmux_ops = { .get_functions_count = pcs_get_functions_count, .get_function_name = pcs_get_function_name, .get_function_groups = pcs_get_function_groups, - .set_mux = pcs_sex_mux, + .set_mux = pcs_set_mux, .gpio_request_enable = pcs_request_gpio, }; |