Message ID | 1443027209-19444-3-git-send-email-agross@codeaurora.org (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | Andy Gross |
Headers | show |
On Wed 23 Sep 09:53 PDT 2015, Andy Gross wrote: > This patch adds support for all current Qualcomm platforms which utilize > RPM over SMD. This includes both MSM8916 and APQ8084. > > Signed-off-by: Andy Gross <agross@codeaurora.org> > --- > .../devicetree/bindings/soc/qcom/qcom,smd-rpm.txt | 2 ++ > drivers/soc/qcom/smd-rpm.c | 2 ++ > 2 files changed, 4 insertions(+) > > diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt b/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt > index 3710dd5..7d05246 100644 > --- a/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt > +++ b/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt > @@ -20,6 +20,8 @@ resources. > Value type: <string> > Definition: must be one of: > "qcom,rpm-msm8974" > + "qcom,rpm-msm8916" > + "qcom,rpm-apq8084" > > - qcom,smd-channels: > Usage: required > diff --git a/drivers/soc/qcom/smd-rpm.c b/drivers/soc/qcom/smd-rpm.c > index 1392ccf..455083c 100644 > --- a/drivers/soc/qcom/smd-rpm.c > +++ b/drivers/soc/qcom/smd-rpm.c > @@ -212,6 +212,8 @@ static void qcom_smd_rpm_remove(struct qcom_smd_device *sdev) > > static const struct of_device_id qcom_smd_rpm_of_match[] = { > { .compatible = "qcom,rpm-msm8974" }, > + { .compatible = "qcom,rpm-msm8916" }, > + { .compatible = "qcom,rpm-apq8084" }, > {} This is now how the alphabet works, please update the order and add: Reviewed-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Regards, Bjorn -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, Sep 23, 2015 at 10:18:40AM -0700, Bjorn Andersson wrote: > On Wed 23 Sep 09:53 PDT 2015, Andy Gross wrote: > > > This patch adds support for all current Qualcomm platforms which utilize > > RPM over SMD. This includes both MSM8916 and APQ8084. > > > > Signed-off-by: Andy Gross <agross@codeaurora.org> > > --- > > .../devicetree/bindings/soc/qcom/qcom,smd-rpm.txt | 2 ++ > > drivers/soc/qcom/smd-rpm.c | 2 ++ > > 2 files changed, 4 insertions(+) > > > > diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt b/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt > > index 3710dd5..7d05246 100644 > > --- a/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt > > +++ b/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt > > @@ -20,6 +20,8 @@ resources. > > Value type: <string> > > Definition: must be one of: > > "qcom,rpm-msm8974" > > + "qcom,rpm-msm8916" > > + "qcom,rpm-apq8084" > > > > - qcom,smd-channels: > > Usage: required > > diff --git a/drivers/soc/qcom/smd-rpm.c b/drivers/soc/qcom/smd-rpm.c > > index 1392ccf..455083c 100644 > > --- a/drivers/soc/qcom/smd-rpm.c > > +++ b/drivers/soc/qcom/smd-rpm.c > > @@ -212,6 +212,8 @@ static void qcom_smd_rpm_remove(struct qcom_smd_device *sdev) > > > > static const struct of_device_id qcom_smd_rpm_of_match[] = { > > { .compatible = "qcom,rpm-msm8974" }, > > + { .compatible = "qcom,rpm-msm8916" }, > > + { .compatible = "qcom,rpm-apq8084" }, > > {} > > This is now how the alphabet works, please update the order and add: > > Reviewed-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> > > Regards, > Bjorn I'll fixup before applying. Thanks!
diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt b/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt index 3710dd5..7d05246 100644 --- a/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt +++ b/Documentation/devicetree/bindings/soc/qcom/qcom,smd-rpm.txt @@ -20,6 +20,8 @@ resources. Value type: <string> Definition: must be one of: "qcom,rpm-msm8974" + "qcom,rpm-msm8916" + "qcom,rpm-apq8084" - qcom,smd-channels: Usage: required diff --git a/drivers/soc/qcom/smd-rpm.c b/drivers/soc/qcom/smd-rpm.c index 1392ccf..455083c 100644 --- a/drivers/soc/qcom/smd-rpm.c +++ b/drivers/soc/qcom/smd-rpm.c @@ -212,6 +212,8 @@ static void qcom_smd_rpm_remove(struct qcom_smd_device *sdev) static const struct of_device_id qcom_smd_rpm_of_match[] = { { .compatible = "qcom,rpm-msm8974" }, + { .compatible = "qcom,rpm-msm8916" }, + { .compatible = "qcom,rpm-apq8084" }, {} }; MODULE_DEVICE_TABLE(of, qcom_smd_rpm_of_match);
This patch adds support for all current Qualcomm platforms which utilize RPM over SMD. This includes both MSM8916 and APQ8084. Signed-off-by: Andy Gross <agross@codeaurora.org> --- .../devicetree/bindings/soc/qcom/qcom,smd-rpm.txt | 2 ++ drivers/soc/qcom/smd-rpm.c | 2 ++ 2 files changed, 4 insertions(+)