From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 18D72C00528 for ; Mon, 7 Aug 2023 15:43:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230522AbjHGPnL (ORCPT ); Mon, 7 Aug 2023 11:43:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34846 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231201AbjHGPnB (ORCPT ); Mon, 7 Aug 2023 11:43:01 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0813EAA; Mon, 7 Aug 2023 08:43:01 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 94E0561E4C; Mon, 7 Aug 2023 15:43:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B7E1BC433C8; Mon, 7 Aug 2023 15:42:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691422980; bh=jDMeY2saM/bjkQWGvcr5EmllnisuWhQJChB6VTZohgw=; h=From:To:Cc:Subject:Date:From; b=LCTDe+pU4O/AkS9TsP5pBKpT2JbhWvoWJgJWoVi1TWL5RGOJcvxiOS3WR4OY/59c1 qvUmb37pIDhiPCjxScL2crEP3BiHi8c3RgojzbkzLa8MCFF5reRQXVu7FZHKrJBSKM hGDFJYIQvk4XYEQHwb9M/FQMukLZlqSAKHY1I/HOrTrCeV6nWDNTD4kRxWrbMhw7N4 fElTg6Ml41AkaTvirqV4tu/RRI5P2g+Fhlzghp1kxhT/fXxGYIOLGGuMuYDiVpcdC7 tFviafZhxn23lFEZqn61BTzaTJXDmkC/p4zMDBnj3xl10R1Fhce1E1emYbF+gJGNmh B2b4YYiU/PE8Q== From: Masahiro Yamada To: Huacai Chen , WANG Xuerui , loongarch@lists.linux.dev Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, Masahiro Yamada Subject: [PATCH 1/3] loongarch: remove unneeded #include Date: Tue, 8 Aug 2023 00:42:48 +0900 Message-Id: <20230807154250.998765-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There is no EXPORT_SYMBOL line there, hence #include is unneeded. Signed-off-by: Masahiro Yamada --- arch/loongarch/kernel/mcount_dyn.S | 1 - arch/loongarch/lib/unaligned.S | 1 - arch/loongarch/mm/tlbex.S | 1 - 3 files changed, 3 deletions(-) diff --git a/arch/loongarch/kernel/mcount_dyn.S b/arch/loongarch/kernel/mcount_dyn.S index e16ab0b98e5a..482aa553aa2d 100644 --- a/arch/loongarch/kernel/mcount_dyn.S +++ b/arch/loongarch/kernel/mcount_dyn.S @@ -3,7 +3,6 @@ * Copyright (C) 2022 Loongson Technology Corporation Limited */ -#include #include #include #include diff --git a/arch/loongarch/lib/unaligned.S b/arch/loongarch/lib/unaligned.S index 9177fd638f07..185f82d85810 100644 --- a/arch/loongarch/lib/unaligned.S +++ b/arch/loongarch/lib/unaligned.S @@ -9,7 +9,6 @@ #include #include #include -#include #include .L_fixup_handle_unaligned: diff --git a/arch/loongarch/mm/tlbex.S b/arch/loongarch/mm/tlbex.S index 4ad78703de6f..ca17dd3a1915 100644 --- a/arch/loongarch/mm/tlbex.S +++ b/arch/loongarch/mm/tlbex.S @@ -3,7 +3,6 @@ * Copyright (C) 2020-2022 Loongson Technology Corporation Limited */ #include -#include #include #include #include -- 2.39.2