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 X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6E20DC433DF for ; Fri, 24 Jul 2020 14:06:50 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D6EA520674 for ; Fri, 24 Jul 2020 14:06:49 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=ellerman.id.au header.i=@ellerman.id.au header.b="BnoCTKiY" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D6EA520674 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 4BCrbq5t1YzF11V for ; Sat, 25 Jul 2020 00:06:47 +1000 (AEST) Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (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 lists.ozlabs.org (Postfix) with ESMTPS id 4BCqWF4ymlzF0fg for ; Fri, 24 Jul 2020 23:17:45 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=ellerman.id.au header.i=@ellerman.id.au header.a=rsa-sha256 header.s=201909 header.b=BnoCTKiY; dkim-atps=neutral Received: by ozlabs.org (Postfix) id 4BCqWF2DYqz9sSy; Fri, 24 Jul 2020 23:17:45 +1000 (AEST) Received: by ozlabs.org (Postfix, from userid 1034) id 4BCqWF0YDCz9sTC; Fri, 24 Jul 2020 23:17:44 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ellerman.id.au; s=201909; t=1595596665; bh=ZLSqpP8+akdOjm2BlY9de1c5AlCdXx2OjouxYzt5/u8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=BnoCTKiYEuYx2ZRFzMzysPDppEK9/b8xV+RornqfmrcXt12I/PH2GZRwhOCfbnKWT OtW3R5acxDo9gvO46wIFc6wJVAdMalLO5G2EtFFfKmYa98nbmwOlhl0BS3jG023rkV thEUNFCUVm7zthzYE4XLD2sgfnRrqQeKsFKhKImCkZkQ+2n/I5XDPb6cr7Ld1shH5F /RKR1czZ2bzWPM2J1Vdxt0rd6IOcOgBk1E/zDDyyRHRjlrazb00MEw56vmdUUi2CXX Yab4Gil6Xmufhv24dNMyypQjV6eAP3HwBlYaNYQExvwLMzz5yfPawQcdHzuZuLBZMY lTkLBy+Ir0Fgg== From: Michael Ellerman To: linuxppc-dev@ozlabs.org Subject: [PATCH 8/9] powerpc/kvm: Use correct CONFIG symbol in comment Date: Fri, 24 Jul 2020 23:17:27 +1000 Message-Id: <20200724131728.1643966-8-mpe@ellerman.id.au> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200724131728.1643966-1-mpe@ellerman.id.au> References: <20200724131728.1643966-1-mpe@ellerman.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" This comment refers to the non-existent CONFIG_PPC_BOOK3S_XX, which confuses scripts/checkkconfigsymbols.py. Change it to use the correct symbol. Signed-off-by: Michael Ellerman --- arch/powerpc/kvm/book3s_interrupts.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/kvm/book3s_interrupts.S b/arch/powerpc/kvm/book3s_interrupts.S index f7ad99d972ce..607a9b99c334 100644 --- a/arch/powerpc/kvm/book3s_interrupts.S +++ b/arch/powerpc/kvm/book3s_interrupts.S @@ -26,7 +26,7 @@ #define FUNC(name) name #define GET_SHADOW_VCPU(reg) lwz reg, (THREAD + THREAD_KVM_SVCPU)(r2) -#endif /* CONFIG_PPC_BOOK3S_XX */ +#endif /* CONFIG_PPC_BOOK3S_64 */ #define VCPU_LOAD_NVGPRS(vcpu) \ PPC_LL r14, VCPU_GPR(R14)(vcpu); \ -- 2.25.1