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=-7.0 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, UNWANTED_LANGUAGE_BODY,URIBL_BLOCKED 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 51492C4741F for ; Mon, 9 Nov 2020 10:39:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CB461208FE for ; Mon, 9 Nov 2020 10:39:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="bTO0OGba" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727311AbgKIKjj (ORCPT ); Mon, 9 Nov 2020 05:39:39 -0500 Received: from perceval.ideasonboard.com ([213.167.242.64]:40830 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726176AbgKIKjj (ORCPT ); Mon, 9 Nov 2020 05:39:39 -0500 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 Cc: Sebastian Reichel , Nikhil Devshatwar , linux-omap@vger.kernel.org, dri-devel@lists.freedesktop.org, Sekhar Nori , Tony Lindgren , "H . Nikolaus Schaller" , Sebastian Reichel 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-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20201105120333.947408-34-tomi.valkeinen@ti.com> Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org 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