Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4f95481 authored by Vaisakh Murali's avatar Vaisakh Murali Committed by Gagan Malvi
Browse files

drivers: mtk: Disable mtk-systracker.



Signed-off-by: default avatarGagan Malvi <malvi@aospa.co>
parent 0ae04397
Loading
Loading
Loading
Loading
+4221 −43

File changed.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -148,7 +148,9 @@ obj-$(CONFIG_MTK_SSMR) += memory-ssmr/
obj-$(CONFIG_ZONE_MOVABLE_CMA) += zone_movable_cma/
obj-$(CONFIG_MTK_DEBUG_LATCH)   += debug_latch/
obj-$(CONFIG_MTK_DFD_INTERNAL_DUMP) += dfd/
ifneq ($(CONFIG_MTK_SYSTRACKER_DISABLE),y)
obj-$(CONFIG_MTK_SYSTRACKER)   += systracker/
endif
obj-$(CONFIG_MEDIATEK_SOLUTION) += cmo/
obj-$(CONFIG_MTK_VOW_SUPPORT)  += vow/
obj-y += timer/
+6 −0
Original line number Diff line number Diff line
config MTK_SYSTRACKER_DISABLE
	bool "Disable all systracker services"
	default y
	help
	  Disable the Mediatek systracker debugging feature

config MTK_SYSTRACKER
	bool "Enable MTK System Tracker Debugger"
	default n
+2 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#

ifneq ($(CONFIG_MTK_SYSTRACKER_DISABLE),y)
ifeq ($(CONFIG_DEPRECATED_MTK_SYSTRACKER_SUPPORT),y)
  obj-y += systracker.o
  obj-y += backtrace.o
@@ -32,3 +32,4 @@ else
    obj-y += backtrace32_asm.o
  endif
endif
endif