Module: Mesa Branch: master Commit: 383fc8e9f340e80695aca2cd585957af0e081eb9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=383fc8e9f340e80695aca2cd585957af0e081eb9
Author: Samuel Pitoiset <[email protected]> Date: Fri Jan 20 01:19:49 2017 +0100 gallium/hud: add missing break in hud_cpufreq_graph_install() Fixes: e99b9395bef "gallium/hud: Add support for CPU frequency monitoring" Cc: [email protected] Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/gallium/auxiliary/hud/hud_cpufreq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/auxiliary/hud/hud_cpufreq.c b/src/gallium/auxiliary/hud/hud_cpufreq.c index 19a6f08..78754b2 100644 --- a/src/gallium/auxiliary/hud/hud_cpufreq.c +++ b/src/gallium/auxiliary/hud/hud_cpufreq.c @@ -149,6 +149,7 @@ hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, break; case CPUFREQ_MAXIMUM: snprintf(gr->name, sizeof(gr->name), "%s-Max", cfi->name); + break; default: return; } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
