Message ID | 20211110105922.217895-3-bhupesh.sharma@linaro.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | Enable Qualcomm Crypto Engine on sm8150 & sm8250 | expand |
On 10-11-21, 16:29, Bhupesh Sharma wrote: > Preparatory patch for subsequent patch in this series which > converts the qcom_bam_dma device-tree binding into YAML format. > > Correct dma-controller node inside msm8996 dts, which > leads to following errors with 'make dtbs_check': > > dma@164400: $nodename:0: 'dma@164400' does not match > '^dma-controller(@.*)?$' > > Fix the same. Looks like one more crept in, this is the only one.. I did fix a bunch previously... Reviewed-by: Vinod Koul <vkoul@kernel.org> > > Cc: Thara Gopinath <thara.gopinath@linaro.org> > Cc: Bjorn Andersson <bjorn.andersson@linaro.org> > Cc: Rob Herring <robh+dt@kernel.org> > Signed-off-by: Bhupesh Sharma <bhupesh.sharma@linaro.org> > --- > arch/arm64/boot/dts/qcom/msm8996.dtsi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/boot/dts/qcom/msm8996.dtsi b/arch/arm64/boot/dts/qcom/msm8996.dtsi > index 27683d7fdfe6..508cd9d06350 100644 > --- a/arch/arm64/boot/dts/qcom/msm8996.dtsi > +++ b/arch/arm64/boot/dts/qcom/msm8996.dtsi > @@ -705,7 +705,7 @@ tsens1: thermal-sensor@4ad000 { > #thermal-sensor-cells = <1>; > }; > > - cryptobam: dma@644000 { > + cryptobam: dma-controller@644000 { > compatible = "qcom,bam-v1.7.0"; > reg = <0x00644000 0x24000>; > interrupts = <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>; > -- > 2.31.1
diff --git a/arch/arm64/boot/dts/qcom/msm8996.dtsi b/arch/arm64/boot/dts/qcom/msm8996.dtsi index 27683d7fdfe6..508cd9d06350 100644 --- a/arch/arm64/boot/dts/qcom/msm8996.dtsi +++ b/arch/arm64/boot/dts/qcom/msm8996.dtsi @@ -705,7 +705,7 @@ tsens1: thermal-sensor@4ad000 { #thermal-sensor-cells = <1>; }; - cryptobam: dma@644000 { + cryptobam: dma-controller@644000 { compatible = "qcom,bam-v1.7.0"; reg = <0x00644000 0x24000>; interrupts = <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>;
Preparatory patch for subsequent patch in this series which converts the qcom_bam_dma device-tree binding into YAML format. Correct dma-controller node inside msm8996 dts, which leads to following errors with 'make dtbs_check': dma@164400: $nodename:0: 'dma@164400' does not match '^dma-controller(@.*)?$' Fix the same. Cc: Thara Gopinath <thara.gopinath@linaro.org> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: Rob Herring <robh+dt@kernel.org> Signed-off-by: Bhupesh Sharma <bhupesh.sharma@linaro.org> --- arch/arm64/boot/dts/qcom/msm8996.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)