diff options
author | Fabio Estevam <[email protected]> | 2023-09-23 15:44:38 -0300 |
---|---|---|
committer | Shawn Guo <[email protected]> | 2023-09-25 11:57:44 +0800 |
commit | 185460f28b3c4431f33c11a914ad4e74ef11b351 (patch) | |
tree | abe455b555f6d71d0d38d8870633668e00241be8 | |
parent | 589a17f677fac13670b95e4ad9bfa2cf65778a8b (diff) |
ARM: dts: imx6q-pistachio: Use a valid value for fsl,tx-d-cal
Passing 5 to fsl,tx-d-cal is not valid as per fsl,mxs-usbphy.yaml:
imx6q-pistachio.dtb: usbphy@20c9000: fsl,tx-d-cal:0:0: 5 is less than the minimum of 79
from schema $id: http://devicetree.org/schemas/phy/fsl,mxs-usbphy.yaml#
Pass the minimum value of 79 instead.
Signed-off-by: Fabio Estevam <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/nxp/imx/imx6q-pistachio.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/nxp/imx/imx6q-pistachio.dts b/arch/arm/boot/dts/nxp/imx/imx6q-pistachio.dts index fb9f320103c6..46c6b96d8073 100644 --- a/arch/arm/boot/dts/nxp/imx/imx6q-pistachio.dts +++ b/arch/arm/boot/dts/nxp/imx/imx6q-pistachio.dts @@ -637,11 +637,11 @@ }; &usbphy1 { - fsl,tx-d-cal = <0x5>; + fsl,tx-d-cal = <79>; }; &usbphy2 { - fsl,tx-d-cal = <0x5>; + fsl,tx-d-cal = <79>; }; &usdhc1 { |