From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756048AbcJFRhB (ORCPT ); Thu, 6 Oct 2016 13:37:01 -0400 Received: from mail-pf0-f195.google.com ([209.85.192.195]:35780 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755486AbcJFRgz (ORCPT ); Thu, 6 Oct 2016 13:36:55 -0400 From: Sudip Mukherjee To: Thomas Gleixner Cc: linux-kernel@vger.kernel.org, Sudip Mukherjee Subject: [PATCH] kernel: irq: fix build failure Date: Thu, 6 Oct 2016 23:06:43 +0530 Message-Id: <1475775403-27207-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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. 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 /* -- 1.9.1