Skip to content
Snippets Groups Projects
Commit 0fcc0ada authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Fix a recently introduced typo that was being masked by some bad conditional compilation

parent 9c30888f
No related branches found
No related tags found
No related merge requests found
......@@ -53,8 +53,6 @@
#include "sam_pck.h"
#ifdef CONFIG_SAMA5_ISI
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
......@@ -118,8 +116,13 @@ uint32_t sam_pck_configure(enum pckid_e pckid, enum pckid_clksrc_e clksrc,
/* Pick the slow clock */
regval = PMC_PCK_CSS_SLOW;
clkin = BOARD_SCK_FREQUENCY
clkin = BOARD_SLOWCLK_FREQUENCY;
}
/* If the source is not the slow clock, then pick either the MCK or the
* PLLACK, whichever will best realize the target frequency.
*/
else
{
DEBUGASSERT(BOARD_MCK_FREQUENCY < BOARD_PLLA_FREQUENCY);
......@@ -254,4 +257,3 @@ void sam_pck_enable(enum pckid_e pckid, bool enable)
putreg32(regval, regaddr);
}
#endif /* CONFIG_SAMA5_ISI */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment