Commit 1abeebea authored by Lee Jones's avatar Lee Jones Committed by Linus Walleij

pinctrl/abx500: replace incorrect return value

Currently in the empty abx500_pin_config_get() function, we're
returning -EINVAL, with a comment stating that the reason for the
failure is that the function isn't implemented yet. Well there's
a proper return code for that. If we use it, we can do away with
the comment too, as it would be implied.
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 49dcf086
...@@ -971,8 +971,7 @@ int abx500_pin_config_get(struct pinctrl_dev *pctldev, ...@@ -971,8 +971,7 @@ int abx500_pin_config_get(struct pinctrl_dev *pctldev,
unsigned pin, unsigned pin,
unsigned long *config) unsigned long *config)
{ {
/* Not implemented */ return -ENOSYS;
return -EINVAL;
} }
int abx500_pin_config_set(struct pinctrl_dev *pctldev, int abx500_pin_config_set(struct pinctrl_dev *pctldev,
......
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