Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4116,6 +4116,7 @@ typedef enum
} \
}
#include "fsl_elec_spec.h"
#define SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY (1700000000UL)


/* XSPI - Peripheral instance base addresses */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@
/* MEMORY module features */

/* @brief Memory map has offset between subsystems. */
#define FSL_FEATURE_MEMORY_HAS_ADDRESS_OFFSET (1)
#define FSL_FEATURE_MEMORY_HAS_ADDRESS_OFFSET (0)

/* MU module features */

Expand Down
2 changes: 1 addition & 1 deletion mcux/mcux-sdk-ng/drivers/netc/fsl_netc_switch.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static void SWT_GetBaseResource(swt_handle_t *handle, netc_hw_switch_idx_t sw)
handle->hw.ports[i].eth = (NETC_ETH_LINK_Type *)((uintptr_t)handle->hw.ports[i].port + 0x1000U);
}
handle->hw.msixTable =
(netc_msix_entry_t *)((uint32_t)FSL_FEATURE_NETC_MSIX_TABLE_BASE +
(netc_msix_entry_t *)((uintptr_t)FSL_FEATURE_NETC_MSIX_TABLE_BASE +
NETC_MSIX_TABLE_OFFSET * (NETC_SOC_SWT_MSI_FUNC_OFFSET + (uint32_t)sw));
}

Expand Down