From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751793AbdAVQhH (ORCPT ); Sun, 22 Jan 2017 11:37:07 -0500 Received: from mail5.windriver.com ([192.103.53.11]:58900 "EHLO mail5.wrs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751328AbdAVQdk (ORCPT ); Sun, 22 Jan 2017 11:33:40 -0500 From: Paul Gortmaker To: , CC: Paul Gortmaker , "David S. Miller" , Subject: [PATCH 11/20] sparc: migrate exception table users onto extable.h Date: Sun, 22 Jan 2017 11:32:35 -0500 Message-ID: <20170122163244.11740-12-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170122163244.11740-1-paul.gortmaker@windriver.com> References: <20170122163244.11740-1-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 This file was using module.h for search_exception_table. We've now separated that content out into its own file "extable.h" so now move over to that. Unlike most other instances, we can't delete the module.h include here since the file needs that for the within_module_init definition. Reported-by: kbuild test robot Cc: "David S. Miller" Cc: sparclinux@vger.kernel.org Signed-off-by: Paul Gortmaker --- arch/sparc/mm/extable.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/sparc/mm/extable.c b/arch/sparc/mm/extable.c index 768a11e6bd4f..db214e9931d9 100644 --- a/arch/sparc/mm/extable.c +++ b/arch/sparc/mm/extable.c @@ -3,6 +3,7 @@ */ #include +#include #include void sort_extable(struct exception_table_entry *start, -- 2.11.0