From: Riku Voipio Date: Wed, 29 Oct 2014 21:50:24 +0000 (-0700) Subject: gcov: add ARM64 to GCOV_PROFILE_ALL X-Git-Tag: firefly_0821_release~3680^2~19^2^2~3 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=addd567d85e1863dfd8bcb733fffb271af206440;p=firefly-linux-kernel-4.4.55.git gcov: add ARM64 to GCOV_PROFILE_ALL Following up the arm testing of gcov, turns out gcov on ARM64 works fine as well. Only change needed is adding ARM64 to Kconfig depends. Tested with qemu and mach-virt Signed-off-by: Riku Voipio Acked-by: Peter Oberparleiter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds (cherry picked from commit f601de204465048bdf0d5537f630729622ebc3a6) Signed-off-by: Mark Brown --- diff --git a/kernel/gcov/Kconfig b/kernel/gcov/Kconfig index fceac858cafe..9da70574dbcc 100644 --- a/kernel/gcov/Kconfig +++ b/kernel/gcov/Kconfig @@ -35,7 +35,7 @@ config GCOV_KERNEL config GCOV_PROFILE_ALL bool "Profile entire Kernel" depends on GCOV_KERNEL - depends on SUPERH || S390 || X86 || PPC || MICROBLAZE || ARM + depends on SUPERH || S390 || X86 || PPC || MICROBLAZE || ARM || ARM64 default n ---help--- This options activates profiling for the entire kernel.