pinctrl: rockchip: return a complete config in pinconf_get
authorHeiko Stübner <heiko@sntech.de>
Wed, 23 Apr 2014 12:27:51 +0000 (14:27 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 23 Apr 2014 21:18:37 +0000 (23:18 +0200)
Till now pinconf_get only set the argument value into the config parameter
effectively removing the actual config param value. As other pinctrl drivers
do, it might be nicer to keep the config param intact.
Therefore construct a real pinconfig value from param and arg in pinconf_get

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-rockchip.c

index 96c60d230c13e1e749687f23266e0e4944852d69..ae3dfe7642f14e9a493d4e959f67fa328e37fd2d 100644 (file)
@@ -740,13 +740,14 @@ static int rockchip_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
        struct rockchip_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
        struct rockchip_pin_bank *bank = pin_to_bank(info, pin);
        enum pin_config_param param = pinconf_to_config_param(*config);
+       u16 arg;
 
        switch (param) {
        case PIN_CONFIG_BIAS_DISABLE:
                if (rockchip_get_pull(bank, pin - bank->pin_base) != param)
                        return -EINVAL;
 
-               *config = 0;
+               arg = 0;
                break;
        case PIN_CONFIG_BIAS_PULL_UP:
        case PIN_CONFIG_BIAS_PULL_DOWN:
@@ -758,13 +759,15 @@ static int rockchip_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
                if (rockchip_get_pull(bank, pin - bank->pin_base) != param)
                        return -EINVAL;
 
-               *config = 1;
+               arg = 1;
                break;
        default:
                return -ENOTSUPP;
                break;
        }
 
+       *config = pinconf_to_config_packed(param, arg);
+
        return 0;
 }