From: Philippe Proulx Date: Wed, 23 Sep 2020 22:17:28 +0000 (-0400) Subject: barectf.h.j2: rename "clock callbacks" -> "clock source callbacks" X-Git-Tag: v3.0.0~48 X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=a5435dc835fb14affa4323c8b8e76f0daf9e2624;p=barectf.git barectf.h.j2: rename "clock callbacks" -> "clock source callbacks" Signed-off-by: Philippe Proulx --- diff --git a/barectf/templates/c/barectf.h.j2 b/barectf/templates/c/barectf.h.j2 index 09633c9..d8691f5 100644 --- a/barectf/templates/c/barectf.h.j2 +++ b/barectf/templates/c/barectf.h.j2 @@ -81,7 +81,7 @@ void {{ prefix }}enable_tracing(void *ctx, int enable); struct {{ prefix }}platform_callbacks { {% set clk_types = trace_type.clock_types %} {% if clk_types %} - /* Clock callbacks */ + /* Clock source callbacks */ {% for clk_type in clk_types | sort %} {{ cg_opts.clock_type_c_types[clk_type] }} (*{{ clk_type.name }}_clock_get_value)(void *); {% endfor %}