summaryrefslogtreecommitdiffstats
path: root/drivers/phy
diff options
context:
space:
mode:
authorJohan Hovold <johan+linaro@kernel.org>2022-11-14 12:06:08 +0100
committerVinod Koul <vkoul@kernel.org>2022-11-24 22:46:51 +0530
commit186266f65e68c16ba6714c9b7f561ddcd4998cae (patch)
treeb5bd91efd7e5ddebd06b3f8bc4d309e9a62c0b79 /drivers/phy
parent8c75d9eab1dd402bde2fb1337db2130a409c2743 (diff)
downloadlinux-stable-186266f65e68c16ba6714c9b7f561ddcd4998cae.tar.gz
linux-stable-186266f65e68c16ba6714c9b7f561ddcd4998cae.tar.bz2
linux-stable-186266f65e68c16ba6714c9b7f561ddcd4998cae.zip
phy: qcom-qmp-combo: rename DP PHY ops
Rename the configure and calibrate DP PHY ops using the common prefix for consistency. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Johan Hovold <johan+linaro@kernel.org> Link: https://lore.kernel.org/r/20221114110621.4639-10-johan+linaro@kernel.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/qualcomm/phy-qcom-qmp-combo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/phy/qualcomm/phy-qcom-qmp-combo.c b/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
index 5d985195df38..7392ae460fd7 100644
--- a/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
+++ b/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
@@ -1842,7 +1842,7 @@ static int qcom_qmp_v4_dp_phy_calibrate(struct qmp_phy *qphy)
return 0;
}
-static int qcom_qmp_dp_phy_configure(struct phy *phy, union phy_configure_opts *opts)
+static int qmp_combo_dp_configure(struct phy *phy, union phy_configure_opts *opts)
{
const struct phy_configure_opts_dp *dp_opts = &opts->dp;
struct qmp_phy *qphy = phy_get_drvdata(phy);
@@ -1857,7 +1857,7 @@ static int qcom_qmp_dp_phy_configure(struct phy *phy, union phy_configure_opts *
return 0;
}
-static int qcom_qmp_dp_phy_calibrate(struct phy *phy)
+static int qmp_combo_dp_calibrate(struct phy *phy)
{
struct qmp_phy *qphy = phy_get_drvdata(phy);
const struct qmp_phy_cfg *cfg = qphy->cfg;
@@ -2127,9 +2127,9 @@ static const struct phy_ops qmp_combo_usb_phy_ops = {
static const struct phy_ops qmp_combo_dp_phy_ops = {
.init = qmp_combo_dp_init,
- .configure = qcom_qmp_dp_phy_configure,
+ .configure = qmp_combo_dp_configure,
.power_on = qmp_combo_power_on,
- .calibrate = qcom_qmp_dp_phy_calibrate,
+ .calibrate = qmp_combo_dp_calibrate,
.power_off = qmp_combo_power_off,
.exit = qmp_combo_dp_exit,
.owner = THIS_MODULE,