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: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Lee Jones 2012-12-20 11:11:19 +00:00 committed by Linus Walleij
parent 49dcf086e4
commit 1abeebeaa5
1 changed files with 1 additions and 2 deletions

View File

@ -971,8 +971,7 @@ int abx500_pin_config_get(struct pinctrl_dev *pctldev,
unsigned pin,
unsigned long *config)
{
/* Not implemented */
return -EINVAL;
return -ENOSYS;
}
int abx500_pin_config_set(struct pinctrl_dev *pctldev,