From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756110AbcGHSpH (ORCPT ); Fri, 8 Jul 2016 14:45:07 -0400 Received: from anholt.net ([50.246.234.109]:54056 "EHLO anholt.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755749AbcGHSpA (ORCPT ); Fri, 8 Jul 2016 14:45:00 -0400 From: Eric Anholt To: dri-devel@lists.freedesktop.org Cc: linux-kernel@vger.kernel.org, mario.kleiner.de@gmail.com, Eric Anholt Subject: [PATCH 1/2] drm/vc4: Bind the HVS before we bind the individual CRTCs. Date: Fri, 8 Jul 2016 11:44:57 -0700 Message-Id: <1468003498-2476-1-git-send-email-eric@anholt.net> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1466662670-9884-2-git-send-email-mario.kleiner.de@gmail.com> References: <1466662670-9884-2-git-send-email-mario.kleiner.de@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We need to be able to look at the CRTC's registers in the HVS as part of initialization, while the HVS doesn't need to look at the PV registers. Signed-off-by: Eric Anholt --- This commit would be slipped in before Mario's commit. drivers/gpu/drm/vc4/vc4_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/vc4/vc4_drv.c b/drivers/gpu/drm/vc4/vc4_drv.c index 73cf6122ebf0..65f77cc243a6 100644 --- a/drivers/gpu/drm/vc4/vc4_drv.c +++ b/drivers/gpu/drm/vc4/vc4_drv.c @@ -261,8 +261,8 @@ static const struct component_master_ops vc4_drm_ops = { static struct platform_driver *const component_drivers[] = { &vc4_hdmi_driver, &vc4_dpi_driver, - &vc4_crtc_driver, &vc4_hvs_driver, + &vc4_crtc_driver, &vc4_v3d_driver, }; -- 2.8.1