]> Git Repo - linux.git/commitdiff
ARM: dts: imx6qdl: convert fsl,tx-d-cal to correct value
authorXu Yang <[email protected]>
Thu, 26 Sep 2024 07:39:51 +0000 (15:39 +0800)
committerShawn Guo <[email protected]>
Fri, 1 Nov 2024 08:04:13 +0000 (16:04 +0800)
make dtbs_check has below warning:

arch/arm/boot/dts/nxp/imx/imx6q-var-mx6customboard.dtb: usbphy@20c9000: fsl,tx-d-cal: 5 is less than the minimum of 79
        from schema $id: http://devicetree.org/schemas/phy/fsl,mxs-usbphy.yaml#

According to schema, valid value of fsl,tx-d-cal is from 79 to 119. This
will convert register raw value <0x5> to corresponding <106>.

Signed-off-by: Xu Yang <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
arch/arm/boot/dts/nxp/imx/imx6qdl-var-som.dtsi

index 59833e8d11d862091a76c304277a8549982b22a3..2bff5f92242ac632952311e3b3bb1af9ca2c140d 100644 (file)
 };
 
 &usbphy1 {
-       fsl,tx-d-cal = <0x5>;
+       fsl,tx-d-cal = <106>;
 };
 
 &usbphy2 {
-       fsl,tx-d-cal = <0x5>;
+       fsl,tx-d-cal = <106>;
 };
 
 &usdhc1 {
This page took 0.057899 seconds and 4 git commands to generate.