Re: [PATCH] of: Add stub for of_get_next_parent

2020-07-10 Thread Rob Herring
On Fri, Jul 10, 2020 at 2:19 AM Akash Asthana wrote: > > Fixes compilation error reported on x86 platform: > > drivers/soc/qcom/qcom-geni-se.c:819:11: error: implicit declaration of > function 'of_get_next_parent'. > > drivers/soc/qcom/qcom-geni-se.c:819:9: warning: incompatible integer to > point

[PATCH] of: Add stub for of_get_next_parent

2020-07-10 Thread Akash Asthana
Fixes compilation error reported on x86 platform: drivers/soc/qcom/qcom-geni-se.c:819:11: error: implicit declaration of function 'of_get_next_parent'. drivers/soc/qcom/qcom-geni-se.c:819:9: warning: incompatible integer to pointer conversion assigning to 'struct device_node *' from 'int' Fixes:

Re: [PATCH] of: Add stub for of_get_next_parent()

2016-04-27 Thread Thierry Reding
On Wed, Apr 27, 2016 at 01:13:33PM +0200, Arnd Bergmann wrote: > On Wednesday 27 April 2016 14:11:40 Heikki Krogerus wrote: > > Fixes a compiler error: > > > > drivers/phy/phy-core.c: In function ‘__of_phy_provider_register’: > > drivers/phy/phy-core.c:848:13: error: implicit declaration of functi

Re: [PATCH] of: Add stub for of_get_next_parent()

2016-04-27 Thread Arnd Bergmann
On Wednesday 27 April 2016 14:11:40 Heikki Krogerus wrote: > Fixes a compiler error: > > drivers/phy/phy-core.c: In function ‘__of_phy_provider_register’: > drivers/phy/phy-core.c:848:13: error: implicit declaration of function > ‘of_get_next_parent’ [-Werror=implicit-function-declaration] > p

[PATCH] of: Add stub for of_get_next_parent()

2016-04-27 Thread Heikki Krogerus
Fixes a compiler error: drivers/phy/phy-core.c: In function ‘__of_phy_provider_register’: drivers/phy/phy-core.c:848:13: error: implicit declaration of function ‘of_get_next_parent’ [-Werror=implicit-function-declaration] parent = of_get_next_parent(parent); ^ Fixes: 2f7600bc