gallium/hud: update some query functions
authorGrazvydas Ignotas <notasas@gmail.com>
Sat, 3 Feb 2018 21:42:28 +0000 (23:42 +0200)
committerGrazvydas Ignotas <notasas@gmail.com>
Wed, 7 Feb 2018 23:12:07 +0000 (01:12 +0200)
It seems these were missed when struct pipe_context * argument was
added to hud_graph::query_new_value.

Fixes: 3132afdf4c "gallium/hud: pass pipe_context explicitly to most functions"
Reviewed-by: Marek Olšák <marek.olsak@amd.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 f5b7c0f2eb490bf8c89ef0600401dfba3c1e4a5e..78a660795c407d61b64b4f28053a2bf71330a5ef 100644 (file)
@@ -91,7 +91,7 @@ get_file_value(const char *fn, uint64_t *KHz)
 }
 
 static void
-query_cfi_load(struct hud_graph *gr)
+query_cfi_load(struct hud_graph *gr, struct pipe_context *pipe)
 {
    struct cpufreq_info *cfi = gr->query_data;
 
index 44174d655db9c767658d37257bacd61e597b312d..7eaaf35a7c7d484e1fa9f7322344066b0df5dfa8 100644 (file)
@@ -117,7 +117,7 @@ get_file_values(const char *fn, struct stat_s *s)
 }
 
 static void
-query_dsi_load(struct hud_graph *gr)
+query_dsi_load(struct hud_graph *gr, struct pipe_context *pipe)
 {
    /* The framework calls us periodically, compensate for the
     * calling interval accordingly when reporting per second.
index 1de5705edf29e66ededb50ecc9190a2bd798ca22..b6c0d9edd5521d86e5d523abe3ef38eaa8c741e5 100644 (file)
@@ -171,7 +171,7 @@ query_nic_rssi(const struct nic_info *nic, uint64_t *leveldBm)
 }
 
 static void
-query_nic_load(struct hud_graph *gr)
+query_nic_load(struct hud_graph *gr, struct pipe_context *pipe)
 {
    /* The framework calls us at a regular but indefined period,
     * not once per second, compensate the statistics accordingly.
index 4d3a11b1c9c17f051b1f0180ac77bcef394a66fd..c26e7b9b2a70d8304090168987e4b458ca34b314 100644 (file)
@@ -154,7 +154,7 @@ find_sti_by_name(const char *n, unsigned int mode)
 }
 
 static void
-query_sti_load(struct hud_graph *gr)
+query_sti_load(struct hud_graph *gr, struct pipe_context *pipe)
 {
    struct sensors_temp_info *sti = gr->query_data;
    uint64_t now = os_time_get();