From patchwork Thu Mar 14 22:04:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 10853747 X-Patchwork-Delegate: kieran@bingham.xyz Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1AEE51515 for ; Thu, 14 Mar 2019 22:04:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0853A2A6A0 for ; Thu, 14 Mar 2019 22:04:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EE32E2A6AC; Thu, 14 Mar 2019 22:04:37 +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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9BC732A6A0 for ; Thu, 14 Mar 2019 22:04:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727996AbfCNWEb (ORCPT ); Thu, 14 Mar 2019 18:04:31 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:58566 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727927AbfCNWEa (ORCPT ); Thu, 14 Mar 2019 18:04:30 -0400 Received: from Q.home (cpc85428-aztw29-2-0-cust223.18-1.cable.virginm.net [82.38.144.224]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9BAF29FD; Thu, 14 Mar 2019 23:04:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1552601067; bh=1YhszjynjaScoGN/8bvmo4He1JeRXZTySkFPMs9frk0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ClapT+5VGTFVc0szsit+mKjXDiZG3pllxGyACWXms5Rvq9n2thWKb5eP3oWgaCXfK GEsPbSuQ7Z26RLLT1bYD36zdQ5MEdJgJmFIGGBqpxRJU3TRAVpSGQq2T9vixTzQ3W1 wJ406C3GmCgg9SqMzWlfH1d3whl8pag8VFcq45rY= From: Kieran Bingham To: linux-renesas-soc@vger.kernel.org, dri-devel@lists.freedesktop.org, Laurent Pinchart , David Airlie Cc: linux-kernel@vger.kernel.org, Kieran Bingham , Daniel Vetter Subject: [PATCH 3/3] drm: rcar-du: Remove unused prototypes Date: Thu, 14 Mar 2019 22:04:20 +0000 Message-Id: <20190314220420.32487-4-kieran.bingham+renesas@ideasonboard.com> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20190314220420.32487-1-kieran.bingham+renesas@ideasonboard.com> References: <20190314220420.32487-1-kieran.bingham+renesas@ideasonboard.com> MIME-Version: 1.0 Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The CRTC suspend and resume functions have been replaced, but the prototypes were not removed. Remove the redundant definitions. Signed-off-by: Kieran Bingham Reviewed-by: Simon Horman --- drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/rcar-du/rcar_du_crtc.h b/drivers/gpu/drm/rcar-du/rcar_du_crtc.h index bcb35b0b7612..3f339a7e8d14 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_crtc.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_crtc.h @@ -97,8 +97,6 @@ enum rcar_du_output { int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int swindex, unsigned int hwindex); -void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc); -void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc); void rcar_du_crtc_finish_page_flip(struct rcar_du_crtc *rcrtc);