dts: bindings: rename nxp,imx-lpspi compatible

Rename "nxp,imx-lpspi" compatible to "nxp,lpspi" to remove the
device family from its name.

Signed-off-by: Manuel Argüelles <manuel.arguelles@nxp.com>
This commit is contained in:
Manuel Argüelles 2024-11-24 14:32:27 +07:00 committed by Fabio Baltieri
commit 4ab9172c92
17 changed files with 65 additions and 65 deletions

View file

@ -37,4 +37,4 @@ void soc_reset_hook(void)
/* SPI cannot be exist with UART or I2C on the same FlexComm Interface
* Throw a build error if user is enabling SPI and UART/I2C on a Flexcomm node.
*/
DT_FOREACH_STATUS_OKAY(nxp_imx_lpspi, FLEXCOMM_CHECK)
DT_FOREACH_STATUS_OKAY(nxp_lpspi, FLEXCOMM_CHECK)

View file

@ -149,11 +149,11 @@ static ALWAYS_INLINE void clock_init(void)
CLOCK_EnableClock(kCLOCK_Lpi2c1);
}
if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpspi0), nxp_imx_lpspi, okay)) {
if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpspi0), nxp_lpspi, okay)) {
CLOCK_EnableClock(kCLOCK_Lpspi0);
}
if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpspi1), nxp_imx_lpspi, okay)) {
if (DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(lpspi1), nxp_lpspi, okay)) {
CLOCK_EnableClock(kCLOCK_Lpspi1);
}