From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750787AbdAXRcK (ORCPT ); Tue, 24 Jan 2017 12:32:10 -0500 Received: from mail1.windriver.com ([147.11.146.13]:60176 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750732AbdAXRcJ (ORCPT ); Tue, 24 Jan 2017 12:32:09 -0500 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: Tue, 24 Jan 2017 12:31:49 -0500 Message-ID: <20170124173149.9357-1-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.11.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. Reported-by: kbuild test robot Cc: Mikael Starvik Cc: Jesper Nilsson Cc: linux-cris-kernel@axis.com Signed-off-by: Paul Gortmaker --- [This is to be added to the other 20 patches of this for-merge series: https://lkml.kernel.org/r/20170122163244.11740-1-paul.gortmaker@windriver.com I didn't want to resend all 20 again just for the addition of a one liner.] arch/cris/arch-v32/kernel/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/cris/arch-v32/kernel/traps.c b/arch/cris/arch-v32/kernel/traps.c index d79666aefd71..ad6174e217c9 100644 --- a/arch/cris/arch-v32/kernel/traps.c +++ b/arch/cris/arch-v32/kernel/traps.c @@ -3,7 +3,7 @@ */ #include -#include +#include #include #include #include -- 2.11.0