Message ID | CACRpkdaCF4Jc7QY+L44obce=V_W4xgVbPXfuiE7bXJs7ud9q9A@mail.gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
* Linus Walleij <linus.walleij@linaro.org> [161104 14:50]: > On Thu, Nov 3, 2016 at 5:35 PM, Tony Lindgren <tony@atomide.com> wrote: > > > Introduce #pinctrl-cells helper binding and generic helper functions > > pinctrl_count_index_with_args() and pinctrl_parse_index_with_args(). > > > > Acked-by: Rob Herring <robh@kernel.org> > > Signed-off-by: Tony Lindgren <tony@atomide.com> > > Ooops applied this v2 version instead of the v1. No problem, only the pinctrl-single patches needed reposting. > * kbuild test robot <lkp@intel.com> [161103 13:29]: > > In file included from drivers/pinctrl/core.c:36:0: > > >> drivers/pinctrl/devicetree.h:29:14: warning: 'struct of_phandle_args' declared inside parameter list will not be visible outside of this > definition or declaratio > > > Hmm maybe we should just include of.h in core.c? > > Nah. I just did this: > > diff --git a/drivers/pinctrl/devicetree.h b/drivers/pinctrl/devicetree.h > index 7f0a5c4e15ad..c2d1a5505850 100644 > --- a/drivers/pinctrl/devicetree.h > +++ b/drivers/pinctrl/devicetree.h > @@ -16,6 +16,8 @@ > * along with this program. If not, see <http://www.gnu.org/licenses/>. > */ > > +struct of_phandle_args; > + > #ifdef CONFIG_OF > > Let's see if it works! OK so do we know now? It seems there was one more email about it but it may have been without it. Thanks, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Mon, Nov 7, 2016 at 4:26 PM, Tony Lindgren <tony@atomide.com> wrote: > * Linus Walleij <linus.walleij@linaro.org> [161104 14:50]: >> +struct of_phandle_args; >> + >> #ifdef CONFIG_OF >> >> Let's see if it works! > > OK so do we know now? It seems there was one more email > about it but it may have been without it. I haven't seen anything, I think it JustWorks(TM). Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
* Linus Walleij <linus.walleij@linaro.org> [161108 03:32]: > On Mon, Nov 7, 2016 at 4:26 PM, Tony Lindgren <tony@atomide.com> wrote: > > * Linus Walleij <linus.walleij@linaro.org> [161104 14:50]: > > >> +struct of_phandle_args; > >> + > >> #ifdef CONFIG_OF > >> > >> Let's see if it works! > > > > OK so do we know now? It seems there was one more email > > about it but it may have been without it. > > I haven't seen anything, I think it JustWorks(TM). OK good to to hear :) Thanks, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/pinctrl/devicetree.h b/drivers/pinctrl/devicetree.h index 7f0a5c4e15ad..c2d1a5505850 100644 --- a/drivers/pinctrl/devicetree.h +++ b/drivers/pinctrl/devicetree.h @@ -16,6 +16,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +struct of_phandle_args; + #ifdef CONFIG_OF Let's see if it works!