From nobody Fri Dec 19 16:00:59 2025 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 A1025C38A2D for ; Mon, 24 Oct 2022 14:11:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232817AbiJXOLI (ORCPT ); Mon, 24 Oct 2022 10:11:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41182 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237381AbiJXOFf (ORCPT ); Mon, 24 Oct 2022 10:05:35 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0A278CE2A; Mon, 24 Oct 2022 05:50:16 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 13EFF61298; Mon, 24 Oct 2022 12:50:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 29B1AC433D6; Mon, 24 Oct 2022 12:50:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1666615814; bh=LQmAsakAOhTVeU7uBGJsnSq11BNJSXfSrfG52Xu9Yu4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Bbeyo9LKGz9TfidHbpU9m7rpJmd1aJIOsDrylh2LbgPdx8YZMIoxWK9u7de4V9+Sl dHTVJYU1uFu19IiyGRP/9gADux8daaCzxqIHsgwp3Pcckyrbu4D+JgEEmLNHPs7/44 SRlkgGA7iQxvcLbb1VINrmyOOBLHHNxvUswS1BGs= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Michael Ellerman , Sasha Levin Subject: [PATCH 5.15 362/530] powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig Date: Mon, 24 Oct 2022 13:31:46 +0200 Message-Id: <20221024113101.443301734@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221024113044.976326639@linuxfoundation.org> References: <20221024113044.976326639@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Michael Ellerman [ Upstream commit aa398d88aea4ec863bd7aea35d5035a37096dc59 ] My commit to add PAPR_SCM to pseries_defconfig failed to add the required dependencies, meaning the driver doesn't get built. Add the required LIBNVDIMM=3Dm. Fixes: d6481a7195df ("powerpc/configs: Add PAPR_SCM to pseries_defconfig") Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20220901014253.252927-1-mpe@ellerman.id.au Signed-off-by: Sasha Levin --- arch/powerpc/configs/pseries_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/= pseries_defconfig index d0494fbb4961..6011977d43c9 100644 --- a/arch/powerpc/configs/pseries_defconfig +++ b/arch/powerpc/configs/pseries_defconfig @@ -41,6 +41,7 @@ CONFIG_DTL=3Dy CONFIG_SCANLOG=3Dm CONFIG_PPC_SMLPAR=3Dy CONFIG_IBMEBUS=3Dy +CONFIG_LIBNVDIMM=3Dm CONFIG_PAPR_SCM=3Dm CONFIG_PPC_SVM=3Dy # CONFIG_PPC_PMAC is not set --=20 2.35.1