On Thu, Sep 5, 2019 at 7:53 AM Light Hsieh <light.hsieh@xxxxxxxxxxxx> wrote: > From: Light Hsieh <light.hsieh@xxxxxxxxxxxx> > > 1.Refine mtk_pinconf_get(): (...) > 2.Refine mtk_pinconf_set(): This explodes on the build servers and it's because of this: > @@ -78,93 +78,75 @@ static int mtk_pinconf_get(struct pinctrl_dev *pctldev, > { > struct mtk_pinctrl *hw = pinctrl_dev_get_drvdata(pctldev); > u32 param = pinconf_to_config_param(*config); > - int val, val2, err, reg, ret = 1; > + int err, reg, ret = 1; Deletes "val" and "val2" > case MTK_PIN_CONFIG_TDSEL: > case MTK_PIN_CONFIG_RDSEL: > reg = (param == MTK_PIN_CONFIG_TDSEL) ? > PINCTRL_PIN_REG_TDSEL : PINCTRL_PIN_REG_RDSEL; > - > err = mtk_hw_get_value(hw, desc, reg, &val); > - if (err) > - return err; > - > - ret = val; > - Updates a bit, but look on the reg = line: "val" is still used. This patch can not have been properly compile tested. Please rebase on latest "devel" branch from pinctrl, fix up the problems and resubmit the entire series after making sure it compiles and works. Yours, Linus Walleij