summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/hud/hud_cpufreq.c
diff options
context:
space:
mode:
authorSteven Toth <[email protected]>2016-10-06 11:26:51 -0400
committerEmil Velikov <[email protected]>2016-10-06 16:37:06 +0100
commite00fdd643b98c0ec22a05089c338cb5142003282 (patch)
tree2ec23c0ecb91f9c456707847cf04cd8235cb5fb4 /src/gallium/auxiliary/hud/hud_cpufreq.c
parent03350c970803cf76b802fca8e7c7a635c97cf8f7 (diff)
gallium/hud: Remove superfluous debug
No longer required. Signed-off-by: Steven Toth <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/hud/hud_cpufreq.c')
-rw-r--r--src/gallium/auxiliary/hud/hud_cpufreq.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/auxiliary/hud/hud_cpufreq.c b/src/gallium/auxiliary/hud/hud_cpufreq.c
index 1296ece84e2..4501bbbc38c 100644
--- a/src/gallium/auxiliary/hud/hud_cpufreq.c
+++ b/src/gallium/auxiliary/hud/hud_cpufreq.c
@@ -46,8 +46,6 @@
#include <sys/types.h>
#include <sys/stat.h>
-#define LOCAL_DEBUG 0
-
struct cpufreq_info
{
struct list_head list;
@@ -139,13 +137,6 @@ hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index,
if (num_cpus <= 0)
return;
-#if LOCAL_DEBUG
- printf("%s(%d, %s) - Creating HUD object\n", __func__, cpu_index,
- mode == CPUFREQ_MINIMUM ? "MIN" :
- mode == CPUFREQ_CURRENT ? "CUR" :
- mode == CPUFREQ_MAXIMUM ? "MAX" : "UNDEFINED");
-#endif
-
cfi = find_cfi_by_index(cpu_index, mode);
if (!cfi)
return;