summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYanfei Zhou <zyanfei@codeaurora.org>2021-07-09 09:43:43 +0800
committerGerrit - the friendly Code Review server <code-review@localhost>2021-07-11 23:38:03 -0700
commitd23bbc508323164a9ed3a4e43caa37daeb9a6bcb (patch)
tree27769e5713a77928af7123e8f773563d66090e4a
parentd5f3b5f0cbb32dcbd91bb754f43862daaae11432 (diff)
FM: Disable FM for Automotive SP
This change is to amend the fix made in commit 37b8b79 Change-Id: I911a0469776959570fbc88278c8050b5688e25f3
-rw-r--r--bt-commonsys-intf-board.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/bt-commonsys-intf-board.mk b/bt-commonsys-intf-board.mk
index 87bc57e..89eb7d2 100644
--- a/bt-commonsys-intf-board.mk
+++ b/bt-commonsys-intf-board.mk
@@ -6,7 +6,11 @@ BOARD_HAVE_BLUETOOTH := true
BOARD_HAVE_BLUETOOTH_QCOM := true
#FM
-ifneq ($(TARGET_BOARD_TYPE),auto)
+ifeq ($(TARGET_BOARD_TYPE),auto)
+BOARD_HAVE_QCOM_FM := false
+else ifeq ($(TARGET_BOARD_AUTO),true)
+BOARD_HAVE_QCOM_FM := false
+else
BOARD_HAVE_QCOM_FM := true
endif