From patchwork Thu May 25 04:41:34 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Padovan X-Patchwork-Id: 9747697 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 272AE60246 for ; Thu, 25 May 2017 04:41:53 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0C38627813 for ; Thu, 25 May 2017 04:41:53 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0129D2785D; Thu, 25 May 2017 04:41:52 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.7 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RCVD_IN_SORBS_SPAM autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id AB93527813 for ; Thu, 25 May 2017 04:41:52 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 664F86E870; Thu, 25 May 2017 04:41:51 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qk0-f195.google.com (mail-qk0-f195.google.com [209.85.220.195]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6B08C6E874 for ; Thu, 25 May 2017 04:41:48 +0000 (UTC) Received: by mail-qk0-f195.google.com with SMTP id y128so29002861qka.3 for ; Wed, 24 May 2017 21:41:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=9XzxB9UiUGgOsEe1KhNGQZzLsCpZeLRy4KgYvDK4pSM=; b=iURvLXROwMcsaGbvW+OJD5tZLCyI3igcJOatmTOsfEUcC0xJJiVW4dAoCC5W+f9tHA 9Xaw+NVj/Dd4rPGtpa97fIN+UIakEsf9Ex3TzCxMwejApOdLjTa88PErfviggqb0tkB7 iHyPynNjIp55jhHGrxKQVkQpxiFMPgtqzz+MO1nRXgTL362s4RwRcVpuNL5HuWRxiTR0 J8YNenK11NK+JLT1deK5UyydUgHVZ/Wx32Ix0OkmjLAAXEyE/vUSK8KO9hoOuNcJ4Ja5 GZx+KYCGe9pzpil3ssK8EAt4XMtXm3epbgZZeVbfvF/clqjxwtS81YBJRfSKbuGR7+V6 P0PA== X-Gm-Message-State: AODbwcBIdXzYgwMTUw7s96LbW2/1GyE0PR1QmCejdvT8zVIBgm9Rk0v0 VTTgZO4dJpP0NA== X-Received: by 10.55.111.71 with SMTP id k68mr35627425qkc.26.1495687307639; Wed, 24 May 2017 21:41:47 -0700 (PDT) Received: from localhost.localdomain ([177.9.53.148]) by smtp.gmail.com with ESMTPSA id 16sm3932790qkl.51.2017.05.24.21.41.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 May 2017 21:41:47 -0700 (PDT) From: Gustavo Padovan To: dri-devel@lists.freedesktop.org Subject: [PATCH 3/6] drm/i915: remove intel_cursor_plane_funcs Date: Thu, 25 May 2017 01:41:34 -0300 Message-Id: <20170525044137.3095-4-gustavo@padovan.org> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170525044137.3095-1-gustavo@padovan.org> References: <20170525044137.3095-1-gustavo@padovan.org> Cc: Gustavo Padovan , Daniel Vetter X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Gustavo Padovan After converting legacy cursor updates to atomic async commits intel_cursor_plane_funcs just duplicates intel_plane_funcs now. Cc: Daniel Vetter Signed-off-by: Gustavo Padovan --- drivers/gpu/drm/i915/intel_display.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 7f4c8d3..ee75165 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -13418,17 +13418,6 @@ const struct drm_plane_funcs intel_plane_funcs = { .atomic_destroy_state = intel_plane_destroy_state, }; -static const struct drm_plane_funcs intel_cursor_plane_funcs = { - .update_plane = drm_atomic_helper_update_plane, - .disable_plane = drm_atomic_helper_disable_plane, - .destroy = intel_plane_destroy, - .set_property = drm_atomic_helper_plane_set_property, - .atomic_get_property = intel_plane_atomic_get_property, - .atomic_set_property = intel_plane_atomic_set_property, - .atomic_duplicate_state = intel_plane_duplicate_state, - .atomic_destroy_state = intel_plane_destroy_state, -}; - static struct intel_plane * intel_primary_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe) { @@ -13675,7 +13664,7 @@ intel_cursor_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe) cursor->disable_plane = intel_disable_cursor_plane; ret = drm_universal_plane_init(&dev_priv->drm, &cursor->base, - 0, &intel_cursor_plane_funcs, + 0, &intel_plane_funcs, intel_cursor_formats, ARRAY_SIZE(intel_cursor_formats), DRM_PLANE_TYPE_CURSOR,