From nobody Fri Apr 3 06:40:34 2026 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 51D4DC6FA82 for ; Wed, 14 Sep 2022 15:10:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229797AbiINPKJ (ORCPT ); Wed, 14 Sep 2022 11:10:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36460 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229692AbiINPKG (ORCPT ); Wed, 14 Sep 2022 11:10:06 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A4D5113DC2 for ; Wed, 14 Sep 2022 08:10:02 -0700 (PDT) Received: from dimapc.. (109-252-122-187.nat.spd-mgts.ru [109.252.122.187]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: dmitry.osipenko) by madras.collabora.co.uk (Postfix) with ESMTPSA id 0754A6600367; Wed, 14 Sep 2022 16:09:59 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1663168200; bh=uWfhIj94xNpIhpVyASAmYnEvUVFgfYgu4vMvd86qMK4=; h=From:To:Cc:Subject:Date:From; b=gmZ1Dzs/Bs7mPmuMnbAyGtg0QdhRaQgIF4nyYAPiaIlpuhIRaBUHTKChqY7puyQOE SlE5mFgKW9c5WCyhJuOJFLuRhSaZbQ8PGTe2Epo47CZLaR2zGO1GtM9dX8+Hr622I4 pOi84l1h8n3jtxUXD9Mk+iUKTsPj80R+7PHXeBxS0W5Ox6IX3ps9YyIn3dJJpUKgfc Bhunx1aGvppbRJmmlx9HyueJa6n4JK2WFBMoDe3Kw52euJtaZhXWZaxY8GH/TVuk9B 428GtEYjj0rdV2SQShDeFAGHkNtVzwYY9uZAdJx5lf9dRm36+powNN2T9AwEDoq7F7 5onuGU7ENympA== From: Dmitry Osipenko To: Jernej Skrabec , Chen-Yu Tsai , Samuel Holland Cc: linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org Subject: [PATCH v1] ARM: sunxi_defconfig: Enable display framebuffer Date: Wed, 14 Sep 2022 18:09:33 +0300 Message-Id: <20220914150933.212182-1-dmitry.osipenko@collabora.com> X-Mailer: git-send-email 2.37.3 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" The display framebuffer config options changed in kernel awhile ago and FB isn't enabled anymore using sunxi_defconfig. Add the missing config options needed by display. Signed-off-by: Dmitry Osipenko --- arch/arm/configs/sunxi_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defc= onfig index 3d14827e0a31..2241e3d037b1 100644 --- a/arch/arm/configs/sunxi_defconfig +++ b/arch/arm/configs/sunxi_defconfig @@ -112,6 +112,8 @@ CONFIG_DRM_PANEL_EDP=3Dy CONFIG_DRM_SIMPLE_BRIDGE=3Dy CONFIG_DRM_LIMA=3Dy CONFIG_FB_SIMPLE=3Dy +CONFIG_FB=3Dy +CONFIG_FRAMEBUFFER_CONSOLE=3Dy CONFIG_BACKLIGHT_CLASS_DEVICE=3Dy CONFIG_BACKLIGHT_PWM=3Dy CONFIG_SOUND=3Dy --=20 2.37.3