Skip to content

Commit

Permalink
hal/imxrt19xx: fix enet PLL enable
Browse files Browse the repository at this point in the history
JIRA: RTOS-507
  • Loading branch information
julianuziemblo committed Sep 25, 2024
1 parent 3327e69 commit 3e658d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hal/armv7m/imxrt/10xx/imxrt10xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ void _imxrt_ccmInitEnetPll(u8 enclk0, u8 enclk1, u8 enclk2, u8 div0, u8 div1)
u32 enet_pll = ((div1 & 0x3) << 2) | (div0 & 0x3);

if (enclk0 != 0) {
enet_pll |= 1 << 12;
enet_pll |= 1 << 13;
}

if (enclk1 != 0) {
Expand Down

0 comments on commit 3e658d5

Please sign in to comment.