From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6F2AA2C0086 for ; Thu, 29 Nov 2012 17:07:31 +1100 (EST) Message-ID: <1354169232.2179.183.camel@pasglop> Subject: Re: [PATCH] export of_reconfig_notifier_[register,unregister] From: Benjamin Herrenschmidt To: Nathan Fontenot Date: Thu, 29 Nov 2012 17:07:12 +1100 In-Reply-To: <50B66922.9090209@linux.vnet.ibm.com> References: <20121128140308.abb21ec8f61553a2ed077fe3@canb.auug.org.au> <50B66922.9090209@linux.vnet.ibm.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Cc: Stephen Rothwell , linux-kernel@vger.kernel.org, Rob Herring , linux-next@vger.kernel.org, Paul Mackerras , linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, 2012-11-28 at 13:42 -0600, Nathan Fontenot wrote: > The of reconfiguration notification chains should be exported for use > by modules. > > Signed-off-by:Nathan Fontenot Grant, I'm applying that into the powerpc tree (with a slightly modified subject line). You don't need to add it to your tree at this stage I suspect. Cheers, Ben. > --- > Index: linux-next/drivers/of/base.c > =================================================================== > --- linux-next.orig/drivers/of/base.c 2012-11-28 09:18:02.000000000 -0600 > +++ linux-next/drivers/of/base.c 2012-11-28 11:05:00.000000000 -0600 > @@ -1282,11 +1282,13 @@ > { > return blocking_notifier_chain_register(&of_reconfig_chain, nb); > } > +EXPORT_SYMBOL_GPL(of_reconfig_notifier_register); > > int of_reconfig_notifier_unregister(struct notifier_block *nb) > { > return blocking_notifier_chain_unregister(&of_reconfig_chain, nb); > } > +EXPORT_SYMBOL_GPL(of_reconfig_notifier_unregister); > > int of_reconfig_notify(unsigned long action, void *p) > { > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/