pinctrl: st: fix return value check
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Fri, 28 Jun 2013 11:30:40 +0000 (19:30 +0800)
committerMark Brown <broonie@linaro.org>
Fri, 28 Jun 2013 14:01:49 +0000 (15:01 +0100)
In case of error, the function pinctrl_register() returns
NULL not ERR_PTR(). The IS_ERR() test in the return value
check should be replaced with NULL test.
The function syscon_regmap_lookup_by_phandle() returns ERR_PTR()
and never returns NULL. The NULL test in the return value check
should be replaced with IS_ERR().

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/pinctrl/pinctrl-st.c

Simple merge