summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2012-03-16 17:52:01 +0000
committerJon Medhurst <tixy@linaro.org>2012-03-19 09:06:37 +0000
commit648ec275cc53a16f7ae503314bfd4fd9bd525dd0 (patch)
treed2f7b5751028c38110b0b29a9b3a118c114d17fd
parent587f10a737e32807821b8bd438853f0c215cf0e5 (diff)
gator/driver: Add config for building the module in-treetracking-armlt-gator-3.3-2012.03-2
Signed-off-by: Jon Medhurst <tixy@linaro.org>
-rw-r--r--drivers/Kconfig2
-rw-r--r--drivers/Makefile2
-rw-r--r--drivers/gator/driver/Kconfig7
3 files changed, 11 insertions, 0 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig
index 5afe5d1f199b..ccad64bcc544 100644
--- a/drivers/Kconfig
+++ b/drivers/Kconfig
@@ -136,4 +136,6 @@ source "drivers/virt/Kconfig"
source "drivers/devfreq/Kconfig"
+source "drivers/gator/driver/Kconfig"
+
endmenu
diff --git a/drivers/Makefile b/drivers/Makefile
index c07be024b962..683aea47baac 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -132,3 +132,5 @@ obj-$(CONFIG_VIRT_DRIVERS) += virt/
obj-$(CONFIG_HYPERV) += hv/
obj-$(CONFIG_PM_DEVFREQ) += devfreq/
+
+obj-$(CONFIG_GATOR) += gator/driver/
diff --git a/drivers/gator/driver/Kconfig b/drivers/gator/driver/Kconfig
new file mode 100644
index 000000000000..3b685ad9963c
--- /dev/null
+++ b/drivers/gator/driver/Kconfig
@@ -0,0 +1,7 @@
+config GATOR
+ tristate "Gator module for ARM's Streamline Performance Analyzer"
+ default m
+ depends on GENERIC_TRACER || TRACING
+ depends on PROFILING
+ depends on HIGH_RES_TIMERS
+ depends on LOCAL_TIMERS || !(ARM && SMP)