phy: qualcomm: phy-qcom-eusb2-repeater: fix override properties

property "qcom,tune-usb2-preem" is for EUSB2_TUNE_USB2_PREEM
property "qcom,tune-usb2-amplitude" is for EUSB2_TUNE_IUSB2

The downstream correspondence is as follows:
EUSB2_TUNE_USB2_PREEM: Tx pre-emphasis tuning
EUSB2_TUNE_IUSB2: HS trasmit amplitude
EUSB2_TUNE_SQUELCH_U: Squelch detection threshold
EUSB2_TUNE_HSDISC: HS disconnect threshold
EUSB2_TUNE_EUSB_SLEW: slew rate

Fixes: 31bc94de7602 ("phy: qualcomm: phy-qcom-eusb2-repeater: Don't zero-out registers")
Signed-off-by: Pengyu Luo <mitltlatltl@gmail.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Reviewed-by: Luca Weiss <luca.weiss@fairphone.com>
Link: https://lore.kernel.org/r/20250812093957.32235-1-mitltlatltl@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by Pengyu Luo and committed by Vinod Koul 942e47ab 8f5ae30d

+2 -2
+2 -2
drivers/phy/qualcomm/phy-qcom-eusb2-repeater.c
··· 127 rptr->cfg->init_tbl[i].value); 128 129 /* Override registers from devicetree values */ 130 - if (!of_property_read_u8(np, "qcom,tune-usb2-amplitude", &val)) 131 regmap_write(regmap, base + EUSB2_TUNE_USB2_PREEM, val); 132 133 if (!of_property_read_u8(np, "qcom,tune-usb2-disc-thres", &val)) 134 regmap_write(regmap, base + EUSB2_TUNE_HSDISC, val); 135 136 - if (!of_property_read_u8(np, "qcom,tune-usb2-preem", &val)) 137 regmap_write(regmap, base + EUSB2_TUNE_IUSB2, val); 138 139 /* Wait for status OK */
··· 127 rptr->cfg->init_tbl[i].value); 128 129 /* Override registers from devicetree values */ 130 + if (!of_property_read_u8(np, "qcom,tune-usb2-preem", &val)) 131 regmap_write(regmap, base + EUSB2_TUNE_USB2_PREEM, val); 132 133 if (!of_property_read_u8(np, "qcom,tune-usb2-disc-thres", &val)) 134 regmap_write(regmap, base + EUSB2_TUNE_HSDISC, val); 135 136 + if (!of_property_read_u8(np, "qcom,tune-usb2-amplitude", &val)) 137 regmap_write(regmap, base + EUSB2_TUNE_IUSB2, val); 138 139 /* Wait for status OK */