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:
parent
97bb2343b0
commit
4ab9172c92
17 changed files with 65 additions and 65 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue