From patchwork Thu May 25 19:51:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Padovan X-Patchwork-Id: 9749071 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 0CBF260246 for ; Thu, 25 May 2017 19:52:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F2A93283BA for ; Thu, 25 May 2017 19:52:16 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E7A96283C3; Thu, 25 May 2017 19:52:16 +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=unavailable 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 977F9283BA for ; Thu, 25 May 2017 19:52:16 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3E8EE6EAC1; Thu, 25 May 2017 19:52:04 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qk0-f194.google.com (mail-qk0-f194.google.com [209.85.220.194]) by gabe.freedesktop.org (Postfix) with ESMTPS id C9CA06EAB9; Thu, 25 May 2017 19:51:57 +0000 (UTC) Received: by mail-qk0-f194.google.com with SMTP id k74so31419087qke.2; Thu, 25 May 2017 12:51:57 -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=dUqGQsGZrjQmQiW7JTlh43fXX0fJwqWgdF5K4JkIO8oHwWUOhVQ4434CJ9mkPjWVAy csrEx3VhP9xGGYRUERx7klhkPKgbKplzFbPKVk/y8mcDdgwcbytimTN3Qks7wxjiSMUR fBczd4SP1y1/UiCTikQhlIjwXAs5Nd4Yekgkfo8ZpC04mWnlorT5JLmvRLLI8Wv3WAvn cy1CEe5IQgx6GhMvRXspynPxiNDafWbFtb5T+N5uvCXdzazWZHm8A8JCB24OyWM/kuuW Blx7ZQdBQ5RERLdBUm2yf7QpXZMrwQf5O6z2lfw92neCtPm4qaPzP+c9MUrRSzZ+xoE1 qA8w== X-Gm-Message-State: AODbwcB0BuzaQmUF8NmIU4vpgaLnjgV6b0rX1sOi+sA7PgSUlENxuH5L mM4yrUa3/RO9Z4vyT9M= X-Received: by 10.55.175.67 with SMTP id y64mr38826475qke.130.1495741916788; Thu, 25 May 2017 12:51:56 -0700 (PDT) Received: from localhost.localdomain ([177.9.53.148]) by smtp.gmail.com with ESMTPSA id k36sm5156427qte.65.2017.05.25.12.51.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 25 May 2017 12:51:56 -0700 (PDT) From: Gustavo Padovan To: dri-devel@lists.freedesktop.org Subject: [PATCH RESEND 3/6] drm/i915: remove intel_cursor_plane_funcs Date: Thu, 25 May 2017 16:51:41 -0300 Message-Id: <20170525195144.18134-4-gustavo@padovan.org> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170525195144.18134-1-gustavo@padovan.org> References: <20170525195144.18134-1-gustavo@padovan.org> Cc: Gustavo Padovan , intel-gfx@lists.freedesktop.org, 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,