clock: mcux: Use FSL_FEATURE_MCG_FFCLK_DIV to conditionalize
Use the FSL_FEATURE_MCG_FFCLK_DIV define to decide if we should call the api to get Fixed Frequency Clock. This fixes Issue #49924 Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
This commit is contained in:
parent
ef3e7a5fa6
commit
4c30c82ead
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ static int mcux_mcg_get_rate(const struct device *dev,
|
|||
clock_name_t clock_name;
|
||||
|
||||
switch ((uint32_t) sub_system) {
|
||||
#ifdef kCLOCK_McgFixedFreqClk
|
||||
#if defined(FSL_FEATURE_MCG_FFCLK_DIV) && (FSL_FEATURE_MCG_FFCLK_DIV)
|
||||
case KINETIS_MCG_FIXED_FREQ_CLK:
|
||||
clock_name = kCLOCK_McgFixedFreqClk;
|
||||
break;
|
||||
|
|
2
west.yml
2
west.yml
|
@ -93,7 +93,7 @@ manifest:
|
|||
groups:
|
||||
- hal
|
||||
- name: hal_nxp
|
||||
revision: 5fb81c9d0a2da9cf889587f35990edbe9c6f137d
|
||||
revision: 708c95825b0d5279620935a1356299fff5dfbc6e
|
||||
path: modules/hal/nxp
|
||||
groups:
|
||||
- hal
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue