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=-6.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,UNWANTED_LANGUAGE_BODY,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 269F4C2D0A3 for ; Mon, 9 Nov 2020 10:39:40 +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 4887E2080C for ; Mon, 9 Nov 2020 10:39:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="bTO0OGba" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4887E2080C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ideasonboard.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A2A66896A5; Mon, 9 Nov 2020 10:39:38 +0000 (UTC) Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by gabe.freedesktop.org (Postfix) with ESMTPS id 0AEE9896A5 for ; Mon, 9 Nov 2020 10:39:37 +0000 (UTC) Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0A112B2B; Mon, 9 Nov 2020 11:39:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1604918375; bh=2PoamcF3SLM5yfMZpqAVh7wkOkL1N+RkZ5+HY2+KRes=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=bTO0OGbargJUEV7EfMYbOrheELHTVP7ilzzreu77/h2IxwkKXTe3tUyitfCMIA/U1 /hd8msnIsNzQLWXZRAzGJofHLka7oTVYl3hbpPMtQVh37RFtBQQcZt8UBdGKUwoCZ8 7xNE/n3Zxm/UgCE1Th9epDzDQ9Mp4ouxKFRCPlWM= Date: Mon, 9 Nov 2020 12:39:31 +0200 From: Laurent Pinchart To: Tomi Valkeinen Subject: Re: [PATCH v3 33/56] drm/omap: dsi: convert to drm_panel Message-ID: <20201109103931.GD6029@pendragon.ideasonboard.com> References: <20201105120333.947408-1-tomi.valkeinen@ti.com> <20201105120333.947408-34-tomi.valkeinen@ti.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20201105120333.947408-34-tomi.valkeinen@ti.com> 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: , Cc: Tony Lindgren , "H . Nikolaus Schaller" , Sekhar Nori , Sebastian Reichel , dri-devel@lists.freedesktop.org, Sebastian Reichel , linux-omap@vger.kernel.org, Nikhil Devshatwar Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Thu, Nov 05, 2020 at 02:03:10PM +0200, Tomi Valkeinen wrote: > From: Sebastian Reichel > > This converts the DSI module to expect common drm_panel display > drivers instead of dssdev based ones. > > Signed-off-by: Sebastian Reichel > Signed-off-by: Tomi Valkeinen > --- > .../gpu/drm/omapdrm/displays/panel-dsi-cm.c | 204 +++++++----------- > drivers/gpu/drm/omapdrm/dss/dsi.c | 133 ++++++++++-- > .../gpu/drm/omapdrm/dss/omapdss-boot-init.c | 1 - > drivers/gpu/drm/omapdrm/dss/omapdss.h | 8 - > 4 files changed, 189 insertions(+), 157 deletions(-) > > diff --git a/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c b/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c > index d9b3444b4faf..3668b3f0aff2 100644 > --- a/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c > +++ b/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c > @@ -6,8 +6,6 @@ > * Author: Tomi Valkeinen > */ > > -/* #define DEBUG */ > - > #include > #include > #include > @@ -20,11 +18,14 @@ > #include > > #include > +#include > +#include > +#include Alphabetically ordered please. > > +#include