From patchwork Wed Jun 23 03:46:44 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 12338931 X-Patchwork-Delegate: kieran@bingham.xyz 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=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 007D7C4743C for ; Wed, 23 Jun 2021 03:47:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DB0606100A for ; Wed, 23 Jun 2021 03:47:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230052AbhFWDtz (ORCPT ); Tue, 22 Jun 2021 23:49:55 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:57852 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229890AbhFWDty (ORCPT ); Tue, 22 Jun 2021 23:49:54 -0400 Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9924EE51; Wed, 23 Jun 2021 05:47:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1624420055; bh=6NQgtVLndRjF2gy9zkQ6JM1jrFYS1CeXXgFotDV8qbQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=biLAj2toFDm/uPC5WLUYF+eFskgCJJss1OExBD1Xq6DDQ4aBulp31AtWmbX8uZKo6 788b6ilZt7N0BDfBq/Nc78qGt78qOzOnd8WETzW0MlOus3wjPlu3t7aaU9pDkO1rIq EjYKpemuyPNdRU8ORbqNbIYbVJFhY4IbktLIE+dc= From: Laurent Pinchart To: linux-renesas-soc@vger.kernel.org Cc: Kieran Bingham , LUU HOAI Subject: [RFC PATCH 03/15] drm: rcar-du: dsi: Use the correct compatible Date: Wed, 23 Jun 2021 06:46:44 +0300 Message-Id: <20210623034656.10316-4-laurent.pinchart+renesas@ideasonboard.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210623034656.10316-1-laurent.pinchart+renesas@ideasonboard.com> References: <20210623034656.10316-1-laurent.pinchart+renesas@ideasonboard.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org From: Kieran Bingham The compatible imported by the driver does not match the bindings created. Update accordingly. Signed-off-by: Kieran Bingham --- drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c index ef2a9b283b4e..0c9887557761 100644 --- a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c +++ b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c @@ -875,7 +875,7 @@ static int rcar_mipi_dsi_remove(struct platform_device *pdev) } static const struct of_device_id rcar_mipi_dsi_of_table[] = { - { .compatible = "renesas,r8a779a0-mipi-dsi" }, + { .compatible = "renesas,r8a779a0-dsi-csi2-tx" }, { } };