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.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 A329FC432BE for ; Wed, 1 Sep 2021 20:39:20 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 6FB4E60EBB for ; Wed, 1 Sep 2021 20:39:20 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 6FB4E60EBB Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=crapouillou.net Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B05676E311; Wed, 1 Sep 2021 20:39:19 +0000 (UTC) Received: from aposti.net (aposti.net [89.234.176.197]) by gabe.freedesktop.org (Postfix) with ESMTPS id 9D9306E311 for ; Wed, 1 Sep 2021 20:39:16 +0000 (UTC) Date: Wed, 01 Sep 2021 21:39:02 +0100 From: Paul Cercueil Subject: Re: [PATCH v3 08/16] MIPS: configs: Everyone who had PANEL_SIMPLE now gets PANEL_SIMPLE_EDP To: Douglas Anderson Cc: Thierry Reding , Rob Herring , Sam Ravnborg , Maarten Lankhorst , linux-arm-msm@vger.kernel.org, Bjorn Andersson , Linus W , Daniel Vetter , devicetree@vger.kernel.org, Steev Klimaszewski , Thomas Zimmermann , Maxime Ripard , David Airlie , dri-devel@lists.freedesktop.org, Andrey Zhizhikin , Daniel Thompson , Krzysztof Kozlowski , Thomas Bogendoerfer , Viresh Kumar , linux-kernel@vger.kernel.org, linux-mips@vger.kernel.org Message-Id: <21WRYQ.3FG7R58QMYBX2@crapouillou.net> In-Reply-To: <20210901131531.v3.8.Ic7a6e3f8dd4760a302c91320843be5a00206bd63@changeid> References: <20210901201934.1084250-1-dianders@chromium.org> <20210901131531.v3.8.Ic7a6e3f8dd4760a302c91320843be5a00206bd63@changeid> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi Douglas, Le mer., sept. 1 2021 at 13:19:26 -0700, Douglas Anderson=20 a =E9crit : > In the patch ("drm/panel-simple-edp: Split eDP panels out of > panel-simple") we split the PANEL_SIMPLE driver in 2. By default let's > give everyone who had the old driver enabled the new driver too. If > folks want to opt-out of one or the other they always can later. >=20 > Signed-off-by: Douglas Anderson > --- >=20 > (no changes since v1) >=20 > arch/mips/configs/qi_lb60_defconfig | 1 + > arch/mips/configs/rs90_defconfig | 1 + The SoCs on these two boards don't support eDP, you can drop this patch. Cheers, -Paul > 2 files changed, 2 insertions(+) >=20 > diff --git a/arch/mips/configs/qi_lb60_defconfig=20 > b/arch/mips/configs/qi_lb60_defconfig > index b4448d0876d5..3e99e223ea02 100644 > --- a/arch/mips/configs/qi_lb60_defconfig > +++ b/arch/mips/configs/qi_lb60_defconfig > @@ -72,6 +72,7 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=3Dy > CONFIG_DRM=3Dy > CONFIG_DRM_FBDEV_OVERALLOC=3D200 > CONFIG_DRM_PANEL_SIMPLE=3Dy > +CONFIG_DRM_PANEL_SIMPLE_EDP=3Dy > CONFIG_DRM_INGENIC=3Dy > CONFIG_BACKLIGHT_CLASS_DEVICE=3Dy > # CONFIG_VGA_CONSOLE is not set > diff --git a/arch/mips/configs/rs90_defconfig=20 > b/arch/mips/configs/rs90_defconfig > index 7ce3b814fdc8..42b4f621cbfa 100644 > --- a/arch/mips/configs/rs90_defconfig > +++ b/arch/mips/configs/rs90_defconfig > @@ -94,6 +94,7 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=3Dy > CONFIG_DRM=3Dy > CONFIG_DRM_FBDEV_OVERALLOC=3D300 > CONFIG_DRM_PANEL_SIMPLE=3Dy > +CONFIG_DRM_PANEL_SIMPLE_EDP=3Dy > CONFIG_DRM_INGENIC=3Dy > CONFIG_BACKLIGHT_CLASS_DEVICE=3Dy > CONFIG_BACKLIGHT_PWM=3Dy > -- > 2.33.0.259.gc128427fd7-goog >=20