From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752361AbdAYVlU (ORCPT ); Wed, 25 Jan 2017 16:41:20 -0500 Received: from mail5.windriver.com ([192.103.53.11]:51236 "EHLO mail5.wrs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751881AbdAYVlT (ORCPT ); Wed, 25 Jan 2017 16:41:19 -0500 From: Paul Gortmaker To: CC: Paul Gortmaker , Jonas Bonn , Stefan Kristiansson , Stafford Horne , Subject: [PATCH v2] openrisc: migrate exception table users off module.h and onto extable.h Date: Wed, 25 Jan 2017 16:40:46 -0500 Message-ID: <20170125214046.31711-1-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170122163244.11740-11-paul.gortmaker@windriver.com> References: <20170122163244.11740-11-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 #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