From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753154AbcJJP4J (ORCPT ); Mon, 10 Oct 2016 11:56:09 -0400 Received: from mail-pa0-f68.google.com ([209.85.220.68]:35969 "EHLO mail-pa0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752223AbcJJP4H (ORCPT ); Mon, 10 Oct 2016 11:56:07 -0400 Message-ID: <57FBBA0B.9070500@gmail.com> Date: Mon, 10 Oct 2016 21:25:55 +0530 From: Sudip Mukherjee User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Thomas Gleixner CC: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH] kernel: irq: fix build failure References: <1475775403-27207-1-git-send-email-sudipm.mukherjee@gmail.com> In-Reply-To: <1475775403-27207-1-git-send-email-sudipm.mukherjee@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thursday 06 October 2016 11:06 PM, Sudip Mukherjee wrote: > The allmodconfig build of powerpc is failing with the error: > ERROR: ".irq_set_parent" [drivers/mfd/tps65217.ko] undefined! > > export the symbol to fix the failure. Hi Thomas, powerpc and arm allmodconfig builds still fails with the same error. Build logs of next-20161010 are at: arm at https://travis-ci.org/sudipm-mukherjee/parport/jobs/166321467 powerpc at https://travis-ci.org/sudipm-mukherjee/parport/jobs/166321473 Regards Sudip > > Signed-off-by: Sudip Mukherjee > --- > > build log is at: > https://travis-ci.org/sudipm-mukherjee/parport/jobs/165418652 > > kernel/irq/manage.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c > index 0c5f1a5..5072814 100644 > --- a/kernel/irq/manage.c > +++ b/kernel/irq/manage.c > @@ -721,6 +721,7 @@ int irq_set_parent(int irq, int parent_irq) > irq_put_desc_unlock(desc, flags); > return 0; > } > +EXPORT_SYMBOL(irq_set_parent); > #endif > > /* >