diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2020-04-15 09:07:45 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-04-28 08:02:17 +0300 |
commit | 2f29298bc2d9679685b2c9bc7293b43d57fe14f4 (patch) | |
tree | d4ef04c2d581168ca81667aac9454cbae21fb04c /drivers | |
parent | 7ae14cf581f2cdd2ebae29ca5b3d42bdfebca597 (diff) | |
download | linux-2f29298bc2d9679685b2c9bc7293b43d57fe14f4.tar.xz |
phy: qcom: qmp: Add SM8250 UFS PHY
The SM8250 UFS PHY can run off the same initialization sequence as
SM8150, but add the compatible to allow future changes.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Tested-by: Vinod Koul <vkoul@kernel.org>
Reviewed-by: Vinod Koul <vkoul@kernel.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/phy/qualcomm/phy-qcom-qmp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/phy/qualcomm/phy-qcom-qmp.c b/drivers/phy/qualcomm/phy-qcom-qmp.c index c190406246ab..50cbcdce3680 100644 --- a/drivers/phy/qualcomm/phy-qcom-qmp.c +++ b/drivers/phy/qualcomm/phy-qcom-qmp.c @@ -2536,6 +2536,9 @@ static const struct of_device_id qcom_qmp_phy_of_match_table[] = { }, { .compatible = "qcom,sm8150-qmp-ufs-phy", .data = &sm8150_ufsphy_cfg, + }, { + .compatible = "qcom,sm8250-qmp-ufs-phy", + .data = &sm8150_ufsphy_cfg, }, { }, }; |