On 4 March 2013 17:18, Axel Lin <[email protected]> wrote: > 2013/3/4 Haojian Zhuang <[email protected]>: >> On 4 March 2013 13:47, Axel Lin <[email protected]> wrote: >>> If pcs->is_pinconf is false, it means does not support pinconf. >>> If pcs->is_pinconf is true, is_generic flag is always true. >>> >>> This patch fixes below build error: >>> >>> CC [M] drivers/pinctrl/pinctrl-single.o >>> drivers/pinctrl/pinctrl-single.c: In function 'pcs_probe': >>> drivers/pinctrl/pinctrl-single.c:1441:3: error: assignment of member >>> 'is_generic' in read-only object >>> make[2]: *** [drivers/pinctrl/pinctrl-single.o] Error 1 >>> make[1]: *** [drivers/pinctrl] Error 2 >>> make: *** [drivers] Error 2 >>> >>> Signed-off-by: Axel Lin <[email protected]> >>> --- >>> drivers/pinctrl/pinctrl-single.c | 6 +++--- >>> 1 file changed, 3 insertions(+), 3 deletions(-) >>> >>> diff --git a/drivers/pinctrl/pinctrl-single.c >>> b/drivers/pinctrl/pinctrl-single.c >>> index 4cdcf85..e35dabd 100644 >>> --- a/drivers/pinctrl/pinctrl-single.c >>> +++ b/drivers/pinctrl/pinctrl-single.c >>> @@ -734,6 +734,7 @@ static const struct pinconf_ops pcs_pinconf_ops = { >>> .pin_config_dbg_show = pcs_pinconf_dbg_show, >>> .pin_config_group_dbg_show = pcs_pinconf_group_dbg_show, >>> .pin_config_config_dbg_show = pcs_pinconf_config_dbg_show, >>> + .is_generic = true, >> >> There's two cases for is_generic. Your fix only make thing worse. > > AFAICT, in current code ( linux-next 20130304, before applying this patch): > if match->data is false, pcs->is_pinconf is also false which means > pinconf isn't supported. > > In the case pcs->is_pinconf is true, is_generic actually is *always* > true in current code. > You're right. Your fix could work.
Reviewed-by: Haojian Zhuang <[email protected]> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

