From mboxrd@z Thu Jan 1 00:00:00 1970 From: Srinivas KANDAGATLA Subject: Re: [PATCH v2 4/7] dt/powerpc/sysdev: Use of_get_child_by_name to get a named child. Date: Fri, 14 Sep 2012 14:15:40 +0100 Message-ID: <50532DFC.20500@st.com> References: <1347610764-20227-1-git-send-email-srinivas.kandagatla@st.com> <50532BB0.3090502@gmail.com> Reply-To: srinivas.kandagatla@st.com Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <50532BB0.3090502@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+glppe-linuxppc-embedded-2=m.gmane.org@lists.ozlabs.org Sender: "Linuxppc-dev" To: Rob Herring Cc: devicetree-discuss@lists.ozlabs.org, linuxppc-dev@lists.ozlabs.org List-Id: devicetree@vger.kernel.org Thanks for pointing the typo.. On 14/09/12 14:05, Rob Herring wrote: > On 09/14/2012 03:19 AM, Srinivas KANDAGATLA wrote: >> From: Srinivas Kandagatla >> >> As follow-up to "dt: introduce of_get_child_by_name to get child node by >> name." patch, This patch removes some of the code duplication in the >> driver by replacing it with of_get_child_by_name instead. >> >> Signed-off-by: Srinivas Kandagatla >> --- >> arch/powerpc/sysdev/qe_lib/qe.c | 5 +---- >> 1 files changed, 1 insertions(+), 4 deletions(-) >> >> diff --git a/arch/powerpc/sysdev/qe_lib/qe.c b/arch/powerpc/sysdev/qe_lib/qe.c >> index b043675..fd1c15d 100644 >> --- a/arch/powerpc/sysdev/qe_lib/qe.c >> +++ b/arch/powerpc/sysdev/qe_lib/qe.c >> @@ -568,10 +568,7 @@ struct qe_firmware_info *qe_get_firmware_info(void) >> } >> >> /* Find the 'firmware' child node */ >> - for_each_child_of_node(qe, fw) { >> - if (strcmp(fw->name, "firmware") == 0) >> - break; >> - } >> + fw = of_get_child_by_name(qe "firmware"); > Missing comma. > >> >> of_node_put(qe); >> >> > >