Message ID | 1462281773-26438-22-git-send-email-gwshan@linux.vnet.ibm.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
On Tue, May 03, 2016 at 11:22:52PM +1000, Gavin Shan wrote: >This exports of_detach_node() for PowerPC PowerNV PCI hotplug >driver. No functional changes introduced. > >Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Rob, I'm not sure it's late to cache the 4.7 merge window. Also, I was told this series is needed by new CAPI driver which is being developed. The developers hope to push the new CAPI driver in 4.8 merge window (perhaps) or linux-next before 4.8 merge window is opened. It means the new CAPI driver depends on this series which has to be pushed to linux-next before 4.8 merge window. If it's fine, could you please merge 16 to 21? With them merged to 4.7, the left patches won't depend on FDT changes. Thanks in advance for your help. Thanks, Gavin >--- > drivers/of/dynamic.c | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/drivers/of/dynamic.c b/drivers/of/dynamic.c >index c647bd1..75ce30d 100644 >--- a/drivers/of/dynamic.c >+++ b/drivers/of/dynamic.c >@@ -311,6 +311,7 @@ int of_detach_node(struct device_node *np) > > return rc; > } >+EXPORT_SYMBOL_GPL(of_detach_node); > > /** > * of_node_release() - release a dynamically allocated node >-- >2.1.0 > -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, May 04, 2016 at 11:36:03PM +1000, Gavin Shan wrote: > On Tue, May 03, 2016 at 11:22:52PM +1000, Gavin Shan wrote: > >This exports of_detach_node() for PowerPC PowerNV PCI hotplug > >driver. No functional changes introduced. > > > >Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> > > Rob, I'm not sure it's late to cache the 4.7 merge window. > Also, I was told this series is needed by new CAPI driver which > is being developed. The developers hope to push the new CAPI driver > in 4.8 merge window (perhaps) or linux-next before 4.8 merge window > is opened. It means the new CAPI driver depends on this series which > has to be pushed to linux-next before 4.8 merge window. > > If it's fine, could you please merge 16 to 21? With them merged to > 4.7, the left patches won't depend on FDT changes. Thanks in advance > for your help. I've applied the 6 patches. Rob -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thu, May 05, 2016 at 02:42:35PM -0500, Rob Herring wrote: >On Wed, May 04, 2016 at 11:36:03PM +1000, Gavin Shan wrote: >> On Tue, May 03, 2016 at 11:22:52PM +1000, Gavin Shan wrote: >> >This exports of_detach_node() for PowerPC PowerNV PCI hotplug >> >driver. No functional changes introduced. >> > >> >Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> >> >> Rob, I'm not sure it's late to cache the 4.7 merge window. >> Also, I was told this series is needed by new CAPI driver which >> is being developed. The developers hope to push the new CAPI driver >> in 4.8 merge window (perhaps) or linux-next before 4.8 merge window >> is opened. It means the new CAPI driver depends on this series which >> has to be pushed to linux-next before 4.8 merge window. >> >> If it's fine, could you please merge 16 to 21? With them merged to >> 4.7, the left patches won't depend on FDT changes. Thanks in advance >> for your help. > >I've applied the 6 patches. > Rob, thank you very much for your helps! Thanks, Gavin >Rob > -- To unsubscribe from this list: send the line "unsubscribe linux-pci" 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/of/dynamic.c b/drivers/of/dynamic.c index c647bd1..75ce30d 100644 --- a/drivers/of/dynamic.c +++ b/drivers/of/dynamic.c @@ -311,6 +311,7 @@ int of_detach_node(struct device_node *np) return rc; } +EXPORT_SYMBOL_GPL(of_detach_node); /** * of_node_release() - release a dynamically allocated node
This exports of_detach_node() for PowerPC PowerNV PCI hotplug driver. No functional changes introduced. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> --- drivers/of/dynamic.c | 1 + 1 file changed, 1 insertion(+)