Commit ea46297d authored by Lucas Russo's avatar Lucas Russo

sm_io/*/afc_diag/afc_diag.mk: fix board version detection

This was effectively skipping compilation of
AFC Diagnostics module.
parent 739193bc
......@@ -3,7 +3,7 @@ sm_io_afc_diag_DIR = $(SRC_DIR)/sm_io/modules/afc_diag
sm_io_afc_diag_OBJS = $(sm_io_afc_diag_DIR)/sm_io_afc_diag_exports.o
# Only compile this for supported AFCv3 boards
ifeq ($(BOARD),$(SUPPORTED_AFCV3_BOARDS))
ifeq ($(BOARD),$(filter $(BOARD),$(SUPPORTED_AFCV3_BOARDS)))
sm_io_afc_diag_OBJS += $(sm_io_afc_diag_DIR)/sm_io_afc_diag_core.o \
$(sm_io_afc_diag_DIR)/sm_io_afc_diag_exp.o \
$(sm_io_afc_diag_DIR)/sm_io_afc_diag_defaults.o
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment