From patchwork Tue Jun 13 21:46:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Sousa X-Patchwork-Id: 13279231 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D06B7EB64D8 for ; Tue, 13 Jun 2023 21:47:13 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 409A310E087; Tue, 13 Jun 2023 21:47:13 +0000 (UTC) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by gabe.freedesktop.org (Postfix) with ESMTPS id D9BA410E087 for ; Tue, 13 Jun 2023 21:47:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1686692831; x=1718228831; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=yoCmvin/uGFVffVC0g3OoW1Bcfroqj8FWQI6leYuJzc=; b=f3DkjgM+VLbknAY/O9Ist4nCKBVF2EvCsVYnfaga5OBu1jrW5toZpkp7 sggFIK60mUPArK5NxZbDsEAwIClWjxeOaY+w9oZmN1GHpH6cRGVgnCipD DAQF3Jq816Uq9ZPh+Y7JE42RdfHHAxm2nojc9c5009IHTCmwYoNoNOtSp oXyc0OUwfMgRvDY5fs0+Ha3ibnZaxJMOPBLBmxCL9uh/MCTAxQlVjKGnl gW6x50f6n386XqKG2A3whj/dmadmOxUakQQwMF15LHdA8r/JYlwYx9xgZ YhhyXgmXSyOiAc+PhjHgXgkfRADOp085W1cgUSORiKx6Y24DChXSN0Luf w==; X-IronPort-AV: E=McAfee;i="6600,9927,10740"; a="338812432" X-IronPort-AV: E=Sophos;i="6.00,240,1681196400"; d="scan'208";a="338812432" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jun 2023 14:47:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10740"; a="741602341" X-IronPort-AV: E=Sophos;i="6.00,240,1681196400"; d="scan'208";a="741602341" Received: from sparedes-mobl.amr.corp.intel.com (HELO gjsousa-mobl2.intel.com) ([10.255.35.217]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jun 2023 14:47:09 -0700 From: Gustavo Sousa To: intel-gfx@lists.freedesktop.org Date: Tue, 13 Jun 2023 18:46:58 -0300 Message-ID: <20230613214658.1099759-1-gustavo.sousa@intel.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH] drm/i915: Remove prototype for intel_cx0_phy_ddi_vswing_sequence() X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" That function is not defined anywhere. Signed-off-by: Gustavo Sousa Reviewed-by: Ravi Kumar Vodapalli --- drivers/gpu/drm/i915/display/intel_cx0_phy.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.h b/drivers/gpu/drm/i915/display/intel_cx0_phy.h index f99809af257d..4c4db5cdcbd0 100644 --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.h +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.h @@ -43,8 +43,5 @@ int intel_c20pll_calc_port_clock(struct intel_encoder *encoder, void intel_cx0_phy_set_signal_levels(struct intel_encoder *encoder, const struct intel_crtc_state *crtc_state); int intel_cx0_phy_check_hdmi_link_rate(struct intel_hdmi *hdmi, int clock); -void intel_cx0_phy_ddi_vswing_sequence(struct intel_encoder *encoder, - const struct intel_crtc_state *crtc_state, - u32 level); int intel_mtl_tbt_calc_port_clock(struct intel_encoder *encoder); #endif /* __INTEL_CX0_PHY_H__ */