This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 9afc9868f683c1a29c3f6aaaae0343a17becc31d Author: Lars Kruse <de...@sumpfralle.de> AuthorDate: Sun May 4 02:17:24 2025 +0200 fix(kinetis): malformed define `KINETIS_NSPI` The malformed defines were introduced in commit 91dd3306c8. They affect only the following chips: * MK64FX512VMD12 * MK64FN1M0VMD12 --- arch/arm/include/kinetis/chip.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/include/kinetis/chip.h b/arch/arm/include/kinetis/chip.h index 10036336ca..9014501fe3 100644 --- a/arch/arm/include/kinetis/chip.h +++ b/arch/arm/include/kinetis/chip.h @@ -1302,8 +1302,8 @@ # define KINETIS_NUSBDEV 1 /* One USB device controller */ # define KINETIS_NSDHC 1 /* SD host controller */ # define KINETIS_NI2C 3 /* Three I2C modules */ -# define KINETIS_NUART 6 /* Six UART modues */ -# define KINETIS_NSPI 3 Three SPI modules +# define KINETIS_NUART 6 /* Six UART modules */ +# define KINETIS_NSPI 3 /* Three SPI modules */ # define KINETIS_NCAN 1 /* One CAN controllers */ # define KINETIS_NI2S 1 /* One I2S modules */ # define KINETIS_NSLCD 1 /* One segment LCD interface (up to 36x8/40x4) */ @@ -1341,8 +1341,8 @@ # define KINETIS_NUSBDEV 1 /* One USB device controller */ # define KINETIS_NSDHC 1 /* SD host controller */ # define KINETIS_NI2C 3 /* Three I2C modules */ -# define KINETIS_NUART 6 /* Six UART modues */ -# define KINETIS_NSPI 3 Three SPI modules +# define KINETIS_NUART 6 /* Six UART modules */ +# define KINETIS_NSPI 3 /* Three SPI modules */ # define KINETIS_NCAN 1 /* One CAN controllers */ # define KINETIS_NI2S 1 /* One I2S modules */ # define KINETIS_NSLCD 1 /* One segment LCD interface (up to 36x8/40x4) */