]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/arm-ds5-gator.git/commitdiff
gator-driver: Revert #error about lack of CONFIG_PERF_EVENTS
authorJon Medhurst <tixy@linaro.org>
Fri, 18 May 2012 08:06:15 +0000 (09:06 +0100)
committerJon Medhurst <tixy@linaro.org>
Fri, 26 Oct 2012 16:09:59 +0000 (17:09 +0100)
Make this a #warning as in version 5.9. This lets Gator build (with
much reduced functionality) on platforms which require
CONFIG_PERF_EVENTS to be disabled for whatever reason.

Signed-off-by: Jon Medhurst <tixy@linaro.org>
driver/gator_main.c

index 309c6c23ad559c50c2cb007798b2f6ba89845216..a2d8ef02ce9a8b3224d51a041a5bec42b3185853 100644 (file)
@@ -48,9 +48,9 @@ static unsigned long gator_protocol_version = 11;
 
 #if (GATOR_PERF_SUPPORT) && (!(GATOR_PERF_PMU_SUPPORT))
 #ifndef CONFIG_PERF_EVENTS
 
 #if (GATOR_PERF_SUPPORT) && (!(GATOR_PERF_PMU_SUPPORT))
 #ifndef CONFIG_PERF_EVENTS
-#error gator requires the kernel to have CONFIG_PERF_EVENTS defined to support pmu hardware counters
+#warning gator requires the kernel to have CONFIG_PERF_EVENTS defined to support pmu hardware counters
 #elif !defined CONFIG_HW_PERF_EVENTS
 #elif !defined CONFIG_HW_PERF_EVENTS
-#error gator requires the kernel to have CONFIG_HW_PERF_EVENTS defined to support pmu hardware counters
+#warning gator requires the kernel to have CONFIG_HW_PERF_EVENTS defined to support pmu hardware counters
 #endif
 #endif
 
 #endif
 #endif