gallium/hud: Remove superfluous debug
authorSteven Toth <stoth@kernellabs.com>
Thu, 6 Oct 2016 15:26:51 +0000 (11:26 -0400)
committerEmil Velikov <emil.l.velikov@gmail.com>
Thu, 6 Oct 2016 15:37:06 +0000 (16:37 +0100)
No longer required.

Signed-off-by: Steven Toth <stoth@kernellabs.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
src/gallium/auxiliary/hud/hud_cpufreq.c
src/gallium/auxiliary/hud/hud_diskstat.c
src/gallium/auxiliary/hud/hud_nic.c
src/gallium/auxiliary/hud/hud_sensors_temp.c

index 1296ece84e278b727783ff89b5834965e3a6b03a..4501bbbc38cc21c624253a16118e82dd1cf7950d 100644 (file)
@@ -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;
index a2290cc428e86ece593036ef0273dadb7e045f25..b248baf5d68bea9d33021f0beacdda7df75fd9da 100644 (file)
@@ -46,8 +46,6 @@
 #include <sys/stat.h>
 #include <unistd.h>
 
-#define LOCAL_DEBUG 0
-
 struct stat_s
 {
    /* Read */
@@ -189,12 +187,6 @@ hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name,
    if (num_devs <= 0)
       return;
 
-#if LOCAL_DEBUG
-   printf("%s(%s, %s) - Creating HUD object\n", __func__, dev_name,
-          mode == DISKSTAT_RD ? "RD" :
-          mode == DISKSTAT_WR ? "WR" : "UNDEFINED");
-#endif
-
    dsi = find_dsi_by_name(dev_name, mode);
    if (!dsi)
       return;
index 36088a07ed42788ce00edbbf2ef612749bd9c5e9..fb6b8c0524b91962c391ffba7d255d0421ac0e7c 100644 (file)
@@ -48,8 +48,6 @@
 #include <sys/ioctl.h>
 #include <linux/wireless.h>
 
-#define LOCAL_DEBUG 0
-
 struct nic_info
 {
    struct list_head list;
@@ -168,13 +166,6 @@ query_nic_rssi(const struct nic_info *nic, uint64_t *leveldBm)
    *leveldBm = ((char) stats.qual.level * -1);
 
    close(sockfd);
-
-#if LOCAL_DEBUG
-   printf("NIC signal level%s is %d%s.\n",
-          (stats.qual.updated & IW_QUAL_DBM ? " (in dBm)" : ""),
-          (char) stats.qual.level,
-          (stats.qual.updated & IW_QUAL_LEVEL_UPDATED ? " (updated)" : ""));
-#endif
 }
 
 static void
@@ -268,13 +259,6 @@ hud_nic_graph_install(struct hud_pane *pane, const char *nic_name,
    if (num_nics <= 0)
       return;
 
-#if LOCAL_DEBUG
-   printf("%s(%s, %s) - Creating HUD object\n", __func__, nic_name,
-          mode == NIC_DIRECTION_RX ? "RX" :
-          mode == NIC_DIRECTION_TX ? "TX" :
-          mode == NIC_RSSI_DBM ? "RSSI" : "UNDEFINED");
-#endif
-
    nic = find_nic_by_name(nic_name, mode);
    if (!nic)
       return;
index 7d1398a505bffcec3707b86039f33372f0163001..e41b8472624f5bdbc4099d35e5b48dcf20bfee1e 100644 (file)
@@ -44,8 +44,6 @@
 #include <unistd.h>
 #include <sensors/sensors.h>
 
-#define LOCAL_DEBUG 0
-
 /* TODO: We don't handle dynamic sensor discovery / arrival or removal.
  * Static globals specific to this HUD category.
  */
@@ -139,12 +137,6 @@ get_sensor_values(struct sensors_temp_info *sti)
                                SENSORS_SUBFEATURE_TEMP_MAX);
    if (sf)
       sti->max = get_value(sti->chip, sf);
-#if LOCAL_DEBUG
-   printf("%s.%s.current = %.1f\n", sti->chipname, sti->featurename,
-          sti->current);
-   printf("%s.%s.critical = %.1f\n", sti->chipname, sti->featurename,
-          sti->critical);
-#endif
 }
 
 static struct sensors_temp_info *
@@ -224,14 +216,6 @@ hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name,
    int num_devs = hud_get_num_sensors(0);
    if (num_devs <= 0)
       return;
-#if LOCAL_DEBUG
-   printf("%s(%s, %s) - Creating HUD object\n", __func__, dev_name,
-          mode == SENSORS_VOLTAGE_CURRENT ? "VOLTS" :
-          mode == SENSORS_CURRENT_CURRENT ? "AMPS" :
-          mode == SENSORS_TEMP_CURRENT ? "CU" :
-          mode == SENSORS_POWER_CURRENT ? "POWER" :
-          mode == SENSORS_TEMP_CRITICAL ? "CR" : "UNDEFINED");
-#endif
 
    sti = find_sti_by_name(dev_name, mode);
    if (!sti)
@@ -281,9 +265,6 @@ create_object(const char *chipname, const char *featurename,
              const sensors_chip_name *chip, const sensors_feature *feature,
              int mode)
 {
-#if LOCAL_DEBUG
-   printf("%03d: %s.%s\n", gsensors_temp_count, chipname, featurename);
-#endif
    struct sensors_temp_info *sti = CALLOC_STRUCT(sensors_temp_info);
 
    sti->mode = mode;