mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
Merge branch 'contrib/github_pr_15499_v5.3' into 'release/v5.3'
Add missing break statements to usb_serial_jtag_ll_phy_select (GitHub PR) (v5.3) See merge request espressif/esp-idf!38125
This commit is contained in:
@ -228,8 +228,10 @@ FORCE_INLINE_ATTR void usb_serial_jtag_ll_phy_select(unsigned int phy_idx)
|
|||||||
switch (phy_idx) {
|
switch (phy_idx) {
|
||||||
case 0:
|
case 0:
|
||||||
LP_SYS.usb_ctrl.sw_usb_phy_sel = false;
|
LP_SYS.usb_ctrl.sw_usb_phy_sel = false;
|
||||||
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
LP_SYS.usb_ctrl.sw_usb_phy_sel = true;
|
LP_SYS.usb_ctrl.sw_usb_phy_sel = true;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user