diff options
Diffstat (limited to 'board/npcx_evb')
-rw-r--r-- | board/npcx_evb/board.c | 2 | ||||
-rw-r--r-- | board/npcx_evb/build.mk | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/board/npcx_evb/board.c b/board/npcx_evb/board.c index cca0692a85..9a185ada2f 100644 --- a/board/npcx_evb/board.c +++ b/board/npcx_evb/board.c @@ -80,7 +80,7 @@ const struct fan_t fans[] = { BUILD_ASSERT(ARRAY_SIZE(fans) == FAN_CH_COUNT); /******************************************************************************/ -/* MFT channels. These are logically separate from mft_channels. */ +/* MFT channels. These are logically separate from pwm_channels. */ const struct mft_t mft_channels[] = { [MFT_CH_0] = { NPCX_MFT_MODULE_1, TCKC_LFCLK, PWM_CH_FAN}, #if (CONFIG_FANS == 2) diff --git a/board/npcx_evb/build.mk b/board/npcx_evb/build.mk index a5be8dc055..786afd9d94 100644 --- a/board/npcx_evb/build.mk +++ b/board/npcx_evb/build.mk @@ -6,8 +6,10 @@ # Board specific files build # -# the IC is Nuvoton M-Series EC (npcx5m5g, npcx5m6g) +# the IC is Nuvoton NPCX5 M-Series EC (npcx5m5g, npcx5m6g) + CHIP:=npcx +CHIP_FAMILY:=npcx5 CHIP_VARIANT:=npcx5m5g board-y=board.o |