From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752806AbdAZOuy (ORCPT ); Thu, 26 Jan 2017 09:50:54 -0500 Received: from mail5.windriver.com ([192.103.53.11]:33704 "EHLO mail5.wrs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752277AbdAZOuv (ORCPT ); Thu, 26 Jan 2017 09:50:51 -0500 Date: Thu, 26 Jan 2017 09:50:31 -0500 From: Paul Gortmaker To: Stafford Horne CC: , Jonas Bonn , Stefan Kristiansson , Subject: Re: [PATCH v2] openrisc: migrate exception table users off module.h and onto extable.h Message-ID: <20170126145031.GF29778@windriver.com> References: <20170122163244.11740-11-paul.gortmaker@windriver.com> <20170125214046.31711-1-paul.gortmaker@windriver.com> <20170126055303.GJ7836@lianli.shorne-pla.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20170126055303.GJ7836@lianli.shorne-pla.net> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [Re: [PATCH v2] openrisc: migrate exception table users off module.h and onto extable.h] On 26/01/2017 (Thu 14:53) Stafford Horne wrote: > On Wed, Jan 25, 2017 at 04:40:46PM -0500, Paul Gortmaker wrote: > > These files were only including module.h for exception table related > > functions. We've now separated that content out into its own file > > "extable.h" so now move over to that and avoid all the extra header > > content in module.h that we don't really need to compile these files. > > > > Reported-by: kbuild test robot > > Cc: Jonas Bonn > > Cc: Stefan Kristiansson > > Cc: Stafford Horne > > Cc: openrisc@lists.librecores.org > > Signed-off-by: Paul Gortmaker > > --- > > > > [v2: add traps.c to conversion, as without a toolchain, I'm at the > > mercy of the things found by kbuild; fixing them iteratively... ] > > > > arch/openrisc/kernel/traps.c | 2 +- > > arch/openrisc/mm/fault.c | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/arch/openrisc/kernel/traps.c b/arch/openrisc/kernel/traps.c > > index a4574cb4b0fb..73abb3ff4fa3 100644 > > --- a/arch/openrisc/kernel/traps.c > > +++ b/arch/openrisc/kernel/traps.c > > @@ -23,7 +23,7 @@ > > #include > > #include > > #include > > -#include > > +#include > > Is this correct or did you want extable.h? Gah, of course. Thanks for spotting that. It will be good to have a working cross compiler for or32 someday to spot thinko items like this. Thanks, Paul. -- > > > #include > > #include > > #include > > diff --git a/arch/openrisc/mm/fault.c b/arch/openrisc/mm/fault.c > > index b1a7435e786a..53592a639744 100644 > > --- a/arch/openrisc/mm/fault.c > > +++ b/arch/openrisc/mm/fault.c > > @@ -17,7 +17,7 @@ > > > > #include > > #include > > -#include > > +#include > > #include > > > > #include > > -- > > 2.11.0 > >