From patchwork Sun Nov 26 15:10:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13468870 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 112FEC4167B for ; Sun, 26 Nov 2023 15:11:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=tBs2jbfiq7VWjuAEd1UKrW3noW+yUELMLFHLB2+a1ck=; b=vGSzYplK319cS+ Jok4W2kuhAcPAwzHXND1OWI+NELe/YBOC6N8mDRRnSzTq+Bgsuk73h6vvNJxGLW5Ec6QBYYB63gi6 ZauOpI6KUyyf++0OkaJjA4ihaoBaQft4W2RdPzchY9EyZ4+OoBQMxVtLViy/Z4/SGATXkw9PHLJ7B KoCcz8BbsV9uu4b0DptzXJq1yDLoIc2w+bgYTwAZ0PnNzp/ap6GrR9K6x+tkr7b60JgqFs9Gfq+nz 1TjKLJ/0Gq0b8g8RyJECxSV3r3bO3hUuWQ1ZzTTPcQ0TwJeaW7BIqkgaOouZLargbVqplv4q35ttN ltuEEmYeFLce0++LOSog==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1r7Gmg-00CARZ-0s; Sun, 26 Nov 2023 15:10:58 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1r7Gmd-00CAPV-30 for linux-arm-kernel@lists.infradead.org; Sun, 26 Nov 2023 15:10:57 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 02E0760EA0; Sun, 26 Nov 2023 15:10:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 85594C433C8; Sun, 26 Nov 2023 15:10:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701011451; bh=zFafLRdl6qo7jyo7XWh2Lf4k9/OTBqXF1Ey4sdDtHdQ=; h=From:To:Cc:Subject:Date:From; b=KElSrhwJ0cF1uR1kj8k0FIt+P2aZkiJy/2xMDJYn7f8OLp8LimYv4lWDkPQpSun5y EnHLCI8D1XjKFHUbm9l4O58qhVhSKYvW6OhZNUBQeBxrr6XMgn2RLY3A69Z3R0Tsob PiXxwfl6DJ2p1uNILDuAyiTV9ClqbQW3iQvMlde5nVVfTvduoWe6P4DrCQNSmJPg8w UNDfZm9mJj53TiHcVCbmAXEnpCMpOZKeQCM1YDoKBRJpO6iUqgubj+41OYRkPeSRKH N2BloO6f64b1chGKeT7/hZDhpnkBL6NYH22O05EeIYzxQCEa+MEYcVMQW1b9UCQPgr WxGryhXctiAdA== From: Masahiro Yamada To: linux-arm-kernel@lists.infradead.org Cc: Masahiro Yamada , Catalin Marinas , Will Deacon , linux-kernel@vger.kernel.org Subject: [PATCH] arm64: replace with Date: Mon, 27 Nov 2023 00:10:45 +0900 Message-Id: <20231126151045.1556686-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231126_071056_038037_6C29700A X-CRM114-Status: UNSURE ( 9.19 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Commit ddb5cdbafaaa ("kbuild: generate KSYMTAB entries by modpost") deprecated , which is now a wrapper of . Replace #include with #include . Signed-off-by: Masahiro Yamada --- arch/arm64/include/asm/assembler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/include/asm/assembler.h b/arch/arm64/include/asm/assembler.h index 376a980f2bad..7b1975bf4b90 100644 --- a/arch/arm64/include/asm/assembler.h +++ b/arch/arm64/include/asm/assembler.h @@ -12,7 +12,7 @@ #ifndef __ASM_ASSEMBLER_H #define __ASM_ASSEMBLER_H -#include +#include #include #include