From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752643AbdHNWSp (ORCPT ); Mon, 14 Aug 2017 18:18:45 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:35112 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752275AbdHNWSo (ORCPT ); Mon, 14 Aug 2017 18:18:44 -0400 Date: Mon, 14 Aug 2017 15:18:44 -0700 From: Greg Kroah-Hartman To: Paul Gortmaker Cc: linux-kernel@vger.kernel.org, linux-next@vger.kernel.org, Stuart Yoder , Laurentiu Tudor Subject: Re: [PATCH-next] bus: fsl-mc: fix implicit irq include causing build fails Message-ID: <20170814221844.GA24807@kroah.com> References: <20170723143652.16445-1-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20170723143652.16445-1-paul.gortmaker@windriver.com> User-Agent: Mutt/1.8.3 (2017-05-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jul 23, 2017 at 10:36:52AM -0400, Paul Gortmaker wrote: > To fix: > > In file included from drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.h:39:0, > from drivers/staging/fsl-dpaa2/ethernet/dpaa2-ethtool.c:34: > drivers/staging/fsl-dpaa2/ethernet/../../fsl-mc/include/dpaa2-io.h:86:1: error: unknown type name ‘irqreturn_t’ > irqreturn_t dpaa2_io_irq(struct dpaa2_io *obj); > ^ > > as seen on arm64 allmodconfig builds. > > Cc: Stuart Yoder > Cc: Laurentiu Tudor > Cc: Greg Kroah-Hartman > Signed-off-by: Paul Gortmaker > --- > > [Seen on current linux-next tree.] > > drivers/staging/fsl-mc/include/dpaa2-io.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/staging/fsl-mc/include/dpaa2-io.h b/drivers/staging/fsl-mc/include/dpaa2-io.h > index 002829cecd75..afc5d5bb1698 100644 > --- a/drivers/staging/fsl-mc/include/dpaa2-io.h > +++ b/drivers/staging/fsl-mc/include/dpaa2-io.h > @@ -34,6 +34,7 @@ > > #include > #include > +#include > > #include "dpaa2-fd.h" > #include "dpaa2-global.h" This does not apply to my tree :(