From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753341AbcISV5G (ORCPT ); Mon, 19 Sep 2016 17:57:06 -0400 Received: from mail.windriver.com ([147.11.1.11]:33114 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752815AbcISV5F (ORCPT ); Mon, 19 Sep 2016 17:57:05 -0400 From: Paul Gortmaker To: CC: Paul Gortmaker , Mikael Starvik , Jesper Nilsson , Subject: [PATCH] cris: migrate exception table users off module.h and onto extable.h Date: Mon, 19 Sep 2016 17:56:54 -0400 Message-ID: <20160919215654.5603-1-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.10.0 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 This file was 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 this file. Cc: Mikael Starvik Cc: Jesper Nilsson Cc: linux-cris-kernel@axis.com Signed-off-by: Paul Gortmaker --- [see: https://lkml.org/lkml/2016/7/24/224 for additional context if needed] arch/cris/mm/fault.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/cris/mm/fault.c b/arch/cris/mm/fault.c index 112ef26c7f2e..94183d3639ef 100644 --- a/arch/cris/mm/fault.c +++ b/arch/cris/mm/fault.c @@ -6,7 +6,7 @@ #include #include -#include +#include #include #include #include -- 2.8.4