* [PATCH] clk: tegra: Do not print errors for clk_round_rate()
@ 2013-11-27 16:26 Thierry Reding
[not found] ` <1385569563-25408-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Thierry Reding @ 2013-11-27 16:26 UTC (permalink / raw)
To: Peter De Schrijver; +Cc: Mike Turquette, linux-tegra-u79uwXL29TY76Z2rM5mHXA
clk_round_rate() can be used by drivers to determine whether or not a
frequency is supported by the clock. The current Tegra clock driver
outputs an error message and a stacktrace when the requested rate isn't
supported. That's fine for clk_set_rate(), but it's confusing when all
the driver does is query whether or not a frequency is supported.
Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
drivers/clk/tegra/clk-pll.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/drivers/clk/tegra/clk-pll.c b/drivers/clk/tegra/clk-pll.c
index 7aec773a5ca6..55ece6726108 100644
--- a/drivers/clk/tegra/clk-pll.c
+++ b/drivers/clk/tegra/clk-pll.c
@@ -435,9 +435,6 @@ static int _calc_rate(struct clk_hw *hw, struct tegra_clk_pll_freq_table *cfg,
if (cfg->m > divm_max(pll) || cfg->n > divn_max(pll) ||
(1 << p_div) > divp_max(pll)
|| cfg->output_rate > pll->params->vco_max) {
- pr_err("%s: Failed to set %s rate %lu\n",
- __func__, __clk_get_name(hw->clk), rate);
- WARN_ON(1);
return -EINVAL;
}
@@ -584,6 +581,8 @@ static int clk_pll_set_rate(struct clk_hw *hw, unsigned long rate,
if (_get_table_rate(hw, &cfg, rate, parent_rate) &&
_calc_rate(hw, &cfg, rate, parent_rate)) {
+ pr_err("%s: Failed to set %s rate %lu\n", __func__,
+ __clk_get_name(hw->clk), rate);
WARN_ON(1);
return -EINVAL;
}
@@ -615,10 +614,8 @@ static long clk_pll_round_rate(struct clk_hw *hw, unsigned long rate,
return __clk_get_rate(hw->clk);
if (_get_table_rate(hw, &cfg, rate, *prate) &&
- _calc_rate(hw, &cfg, rate, *prate)) {
- WARN_ON(1);
+ _calc_rate(hw, &cfg, rate, *prate))
return -EINVAL;
- }
return cfg.output_rate;
}
--
1.8.4.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] clk: tegra: Do not print errors for clk_round_rate()
[not found] ` <1385569563-25408-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
@ 2013-11-27 16:34 ` Thierry Reding
[not found] ` <20131127163442.GA25458-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2013-11-27 18:17 ` Mike Turquette
2013-11-28 14:07 ` Peter De Schrijver
2 siblings, 1 reply; 6+ messages in thread
From: Thierry Reding @ 2013-11-27 16:34 UTC (permalink / raw)
To: Peter De Schrijver
Cc: Mike Turquette, Stefan Agner, linux-tegra-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 2351 bytes --]
On Wed, Nov 27, 2013 at 05:26:03PM +0100, Thierry Reding wrote:
> clk_round_rate() can be used by drivers to determine whether or not a
> frequency is supported by the clock. The current Tegra clock driver
> outputs an error message and a stacktrace when the requested rate isn't
> supported. That's fine for clk_set_rate(), but it's confusing when all
> the driver does is query whether or not a frequency is supported.
>
> Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
> ---
> drivers/clk/tegra/clk-pll.c | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)
Cc'ing Stefan, since he reported this error or IRC. Stefan, can you
check whether this fixes the issue you were seeing? In case you're not
subscribed, please let me know and I'll resend the patch.
Peter, if you're fine with applying as-is, can you add this:
Reported-by: Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>
to give proper credit?
Thanks,
Thierry
>
> diff --git a/drivers/clk/tegra/clk-pll.c b/drivers/clk/tegra/clk-pll.c
> index 7aec773a5ca6..55ece6726108 100644
> --- a/drivers/clk/tegra/clk-pll.c
> +++ b/drivers/clk/tegra/clk-pll.c
> @@ -435,9 +435,6 @@ static int _calc_rate(struct clk_hw *hw, struct tegra_clk_pll_freq_table *cfg,
> if (cfg->m > divm_max(pll) || cfg->n > divn_max(pll) ||
> (1 << p_div) > divp_max(pll)
> || cfg->output_rate > pll->params->vco_max) {
> - pr_err("%s: Failed to set %s rate %lu\n",
> - __func__, __clk_get_name(hw->clk), rate);
> - WARN_ON(1);
> return -EINVAL;
> }
>
> @@ -584,6 +581,8 @@ static int clk_pll_set_rate(struct clk_hw *hw, unsigned long rate,
>
> if (_get_table_rate(hw, &cfg, rate, parent_rate) &&
> _calc_rate(hw, &cfg, rate, parent_rate)) {
> + pr_err("%s: Failed to set %s rate %lu\n", __func__,
> + __clk_get_name(hw->clk), rate);
> WARN_ON(1);
> return -EINVAL;
> }
> @@ -615,10 +614,8 @@ static long clk_pll_round_rate(struct clk_hw *hw, unsigned long rate,
> return __clk_get_rate(hw->clk);
>
> if (_get_table_rate(hw, &cfg, rate, *prate) &&
> - _calc_rate(hw, &cfg, rate, *prate)) {
> - WARN_ON(1);
> + _calc_rate(hw, &cfg, rate, *prate))
> return -EINVAL;
> - }
>
> return cfg.output_rate;
> }
> --
> 1.8.4.2
>
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] clk: tegra: Do not print errors for clk_round_rate()
[not found] ` <1385569563-25408-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-11-27 16:34 ` Thierry Reding
@ 2013-11-27 18:17 ` Mike Turquette
2013-11-28 14:07 ` Peter De Schrijver
2 siblings, 0 replies; 6+ messages in thread
From: Mike Turquette @ 2013-11-27 18:17 UTC (permalink / raw)
To: Thierry Reding, Peter De Schrijver; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA
Quoting Thierry Reding (2013-11-27 08:26:03)
> clk_round_rate() can be used by drivers to determine whether or not a
> frequency is supported by the clock. The current Tegra clock driver
> outputs an error message and a stacktrace when the requested rate isn't
> supported. That's fine for clk_set_rate(), but it's confusing when all
> the driver does is query whether or not a frequency is supported.
>
> Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Acked-by: Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> ---
> drivers/clk/tegra/clk-pll.c | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/clk/tegra/clk-pll.c b/drivers/clk/tegra/clk-pll.c
> index 7aec773a5ca6..55ece6726108 100644
> --- a/drivers/clk/tegra/clk-pll.c
> +++ b/drivers/clk/tegra/clk-pll.c
> @@ -435,9 +435,6 @@ static int _calc_rate(struct clk_hw *hw, struct tegra_clk_pll_freq_table *cfg,
> if (cfg->m > divm_max(pll) || cfg->n > divn_max(pll) ||
> (1 << p_div) > divp_max(pll)
> || cfg->output_rate > pll->params->vco_max) {
> - pr_err("%s: Failed to set %s rate %lu\n",
> - __func__, __clk_get_name(hw->clk), rate);
> - WARN_ON(1);
> return -EINVAL;
> }
>
> @@ -584,6 +581,8 @@ static int clk_pll_set_rate(struct clk_hw *hw, unsigned long rate,
>
> if (_get_table_rate(hw, &cfg, rate, parent_rate) &&
> _calc_rate(hw, &cfg, rate, parent_rate)) {
> + pr_err("%s: Failed to set %s rate %lu\n", __func__,
> + __clk_get_name(hw->clk), rate);
> WARN_ON(1);
> return -EINVAL;
> }
> @@ -615,10 +614,8 @@ static long clk_pll_round_rate(struct clk_hw *hw, unsigned long rate,
> return __clk_get_rate(hw->clk);
>
> if (_get_table_rate(hw, &cfg, rate, *prate) &&
> - _calc_rate(hw, &cfg, rate, *prate)) {
> - WARN_ON(1);
> + _calc_rate(hw, &cfg, rate, *prate))
> return -EINVAL;
> - }
>
> return cfg.output_rate;
> }
> --
> 1.8.4.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] clk: tegra: Do not print errors for clk_round_rate()
[not found] ` <20131127163442.GA25458-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
@ 2013-11-27 22:33 ` Stefan Agner
2013-11-27 22:52 ` Stefan Agner
1 sibling, 0 replies; 6+ messages in thread
From: Stefan Agner @ 2013-11-27 22:33 UTC (permalink / raw)
To: Thierry Reding
Cc: Peter De Schrijver, Mike Turquette, Stefan Agner,
linux-tegra-u79uwXL29TY76Z2rM5mHXA
On Wed, Nov 27, 2013 at 05:34:43PM +0100, Thierry Reding wrote:
> Cc'ing Stefan, since he reported this error or IRC. Stefan, can you
> check whether this fixes the issue you were seeing? In case you're not
> subscribed, please let me know and I'll resend the patch.
I am. The stacktrace for the records:
[ 1.501717] _calc_rate: Failed to set pll_d rate 1142000000
[ 1.507272] ------------[ cut here ]------------
[ 1.511889] WARNING: CPU: 0 PID: 1 at drivers/clk/tegra/clk-pll.c:394 _calc_rate+0x288/0x2a0()
[ 1.520491] Modules linked in:
[ 1.523542] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G W 3.13.0-rc1-00144-g5f53252-dirty #43
[ 1.532672] [<c0015b84>] (unwind_backtrace+0x0/0xf8) from [<c0011864>] (show_stack+0x10/0x14)
[ 1.541194] [<c0011864>] (show_stack+0x10/0x14) from [<c0552854>] (dump_stack+0x80/0xc0)
[ 1.549272] [<c0552854>] (dump_stack+0x80/0xc0) from [<c00256d8>] (warn_slowpath_common+0x64/0x88)
[ 1.558225] [<c00256d8>] (warn_slowpath_common+0x64/0x88) from [<c0025718>] (warn_slowpath_null+0x1c/0x24)
[ 1.567870] [<c0025718>] (warn_slowpath_null+0x1c/0x24) from [<c03b6df4>] (_calc_rate+0x288/0x2a0)
[ 1.576822] [<c03b6df4>] (_calc_rate+0x288/0x2a0) from [<c03b7fd8>] (clk_pll_round_rate+0x74/0x94)
[ 1.585774] [<c03b7fd8>] (clk_pll_round_rate+0x74/0x94) from [<c03b3dcc>] (__clk_round_rate+0x6c/0x8c)
[ 1.595072] [<c03b3dcc>] (__clk_round_rate+0x6c/0x8c) from [<c03b3e08>] (clk_round_rate+0x1c/0x2c)
[ 1.604023] [<c03b3e08>] (clk_round_rate+0x1c/0x2c) from [<c02a0528>] (tegra_output_hdmi_check_mode+0x24/0x3c)
[ 1.614018] [<c02a0528>] (tegra_output_hdmi_check_mode+0x24/0x3c) from [<c029faf8>] (tegra_connector_mode_valid+0x3c/0x58)
[ 1.625054] [<c029faf8>] (tegra_connector_mode_valid+0x3c/0x58) from [<c027ed1c>] (drm_helper_probe_single_connector_modes+0x278/0x334)
[ 1.637216] [<c027ed1c>] (drm_helper_probe_single_connector_modes+0x278/0x334) from [<c027f768>] (drm_fb_helper_probe_connector_modes+0x48/0x68)
[ 1.650158] [<c027f768>] (drm_fb_helper_probe_connector_modes+0x48/0x68) from [<c02810b0>] (drm_fb_helper_initial_config+0x134/0x4b8)
[ 1.662145] [<c02810b0>] (drm_fb_helper_initial_config+0x134/0x4b8) from [<c029bb74>] (tegra_drm_fb_init+0x94/0x108)
[ 1.672658] [<c029bb74>] (tegra_drm_fb_init+0x94/0x108) from [<c029abc4>] (tegra_drm_load+0x94/0xc0)
[ 1.681784] [<c029abc4>] (tegra_drm_load+0x94/0xc0) from [<c0289644>] (drm_dev_register+0x94/0x188)
[ 1.690822] [<c0289644>] (drm_dev_register+0x94/0x188) from [<c029a7bc>] (drm_host1x_init+0x38/0x94)
[ 1.699939] [<c029a7bc>] (drm_host1x_init+0x38/0x94) from [<c02a4e90>] (host1x_subdev_register+0xb8/0xd4)
[ 1.709497] [<c02a4e90>] (host1x_subdev_register+0xb8/0xd4) from [<c02a5170>] (host1x_attach_driver+0x2c4/0x308)
[ 1.719662] [<c02a5170>] (host1x_attach_driver+0x2c4/0x308) from [<c02a5678>] (host1x_register+0x60/0x84)
[ 1.729224] [<c02a5678>] (host1x_register+0x60/0x84) from [<c02a64a4>] (host1x_probe+0x1c8/0x260)
[ 1.738091] [<c02a64a4>] (host1x_probe+0x1c8/0x260) from [<c02b04dc>] (platform_drv_probe+0x18/0x48)
[ 1.747217] [<c02b04dc>] (platform_drv_probe+0x18/0x48) from [<c02af144>] (driver_probe_device+0x114/0x22c)
[ 1.756949] [<c02af144>] (driver_probe_device+0x114/0x22c) from [<c02af2e8>] (__driver_attach+0x8c/0x90)
[ 1.766419] [<c02af2e8>] (__driver_attach+0x8c/0x90) from [<c02ad920>] (bus_for_each_dev+0x54/0x88)
[ 1.775459] [<c02ad920>] (bus_for_each_dev+0x54/0x88) from [<c02ae8f0>] (bus_add_driver+0xd4/0x1d0)
[ 1.784496] [<c02ae8f0>] (bus_add_driver+0xd4/0x1d0) from [<c02af904>] (driver_register+0x78/0xf4)
[ 1.793449] [<c02af904>] (driver_register+0x78/0xf4) from [<c0772898>] (tegra_host1x_init+0x20/0x48)
[ 1.802576] [<c0772898>] (tegra_host1x_init+0x20/0x48) from [<c0008a3c>] (do_one_initcall+0xec/0x148)
[ 1.811787] [<c0008a3c>] (do_one_initcall+0xec/0x148) from [<c075bbec>] (kernel_init_freeable+0xfc/0x1c8)
[ 1.821346] [<c075bbec>] (kernel_init_freeable+0xfc/0x1c8) from [<c054e1cc>] (kernel_init+0x8/0x118)
[ 1.830472] [<c054e1cc>] (kernel_init+0x8/0x118) from [<c000e738>] (ret_from_fork+0x14/0x3c)
[ 1.838888] ---[ end trace 2b7e969b76d1ea4d ]---
[ 1.843499] ------------[ cut here ]------------
[ 1.848108] WARNING: CPU: 0 PID: 1 at drivers/clk/tegra/clk-pll.c:571 clk_pll_round_rate+0x88/0x94()
[ 1.857225] Modules linked in:
[ 1.860284] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G W 3.13.0-rc1-00144-g5f53252-dirty #43
[ 1.869404] [<c0015b84>] (unwind_backtrace+0x0/0xf8) from [<c0011864>] (show_stack+0x10/0x14)
[ 1.877927] [<c0011864>] (show_stack+0x10/0x14) from [<c0552854>] (dump_stack+0x80/0xc0)
[ 1.886014] [<c0552854>] (dump_stack+0x80/0xc0) from [<c00256d8>] (warn_slowpath_common+0x64/0x88)
[ 1.894966] [<c00256d8>] (warn_slowpath_common+0x64/0x88) from [<c0025718>] (warn_slowpath_null+0x1c/0x24)
[ 1.904612] [<c0025718>] (warn_slowpath_null+0x1c/0x24) from [<c03b7fec>] (clk_pll_round_rate+0x88/0x94)
[ 1.914085] [<c03b7fec>] (clk_pll_round_rate+0x88/0x94) from [<c03b3dcc>] (__clk_round_rate+0x6c/0x8c)
[ 1.923388] [<c03b3dcc>] (__clk_round_rate+0x6c/0x8c) from [<c03b3e08>] (clk_round_rate+0x1c/0x2c)
[ 1.932341] [<c03b3e08>] (clk_round_rate+0x1c/0x2c) from [<c02a0528>] (tegra_output_hdmi_check_mode+0x24/0x3c)
[ 1.942336] [<c02a0528>] (tegra_output_hdmi_check_mode+0x24/0x3c) from [<c029faf8>] (tegra_connector_mode_valid+0x3c/0x58)
[ 1.953373] [<c029faf8>] (tegra_connector_mode_valid+0x3c/0x58) from [<c027ed1c>] (drm_helper_probe_single_connector_modes+0x278/0x334)
[ 1.965534] [<c027ed1c>] (drm_helper_probe_single_connector_modes+0x278/0x334) from [<c027f768>] (drm_fb_helper_probe_connector_modes+0x48/0x68)
[ 1.978476] [<c027f768>] (drm_fb_helper_probe_connector_modes+0x48/0x68) from [<c02810b0>] (drm_fb_helper_initial_config+0x134/0x4b8)
[ 1.990463] [<c02810b0>] (drm_fb_helper_initial_config+0x134/0x4b8) from [<c029bb74>] (tegra_drm_fb_init+0x94/0x108)
[ 2.000977] [<c029bb74>] (tegra_drm_fb_init+0x94/0x108) from [<c029abc4>] (tegra_drm_load+0x94/0xc0)
[ 2.010094] [<c029abc4>] (tegra_drm_load+0x94/0xc0) from [<c0289644>] (drm_dev_register+0x94/0x188)
[ 2.019131] [<c0289644>] (drm_dev_register+0x94/0x188) from [<c029a7bc>] (drm_host1x_init+0x38/0x94)
[ 2.028257] [<c029a7bc>] (drm_host1x_init+0x38/0x94) from [<c02a4e90>] (host1x_subdev_register+0xb8/0xd4)
[ 2.037825] [<c02a4e90>] (host1x_subdev_register+0xb8/0xd4) from [<c02a5170>] (host1x_attach_driver+0x2c4/0x308)
[ 2.047993] [<c02a5170>] (host1x_attach_driver+0x2c4/0x308) from [<c02a5678>] (host1x_register+0x60/0x84)
[ 2.057552] [<c02a5678>] (host1x_register+0x60/0x84) from [<c02a64a4>] (host1x_probe+0x1c8/0x260)
[ 2.066419] [<c02a64a4>] (host1x_probe+0x1c8/0x260) from [<c02b04dc>] (platform_drv_probe+0x18/0x48)
[ 2.075546] [<c02b04dc>] (platform_drv_probe+0x18/0x48) from [<c02af144>] (driver_probe_device+0x114/0x22c)
[ 2.085280] [<c02af144>] (driver_probe_device+0x114/0x22c) from [<c02af2e8>] (__driver_attach+0x8c/0x90)
[ 2.094753] [<c02af2e8>] (__driver_attach+0x8c/0x90) from [<c02ad920>] (bus_for_each_dev+0x54/0x88)
[ 2.103791] [<c02ad920>] (bus_for_each_dev+0x54/0x88) from [<c02ae8f0>] (bus_add_driver+0xd4/0x1d0)
[ 2.112829] [<c02ae8f0>] (bus_add_driver+0xd4/0x1d0) from [<c02af904>] (driver_register+0x78/0xf4)
[ 2.121787] [<c02af904>] (driver_register+0x78/0xf4) from [<c0772898>] (tegra_host1x_init+0x20/0x48)
[ 2.130915] [<c0772898>] (tegra_host1x_init+0x20/0x48) from [<c0008a3c>] (do_one_initcall+0xec/0x148)
[ 2.140118] [<c0008a3c>] (do_one_initcall+0xec/0x148) from [<c075bbec>] (kernel_init_freeable+0xfc/0x1c8)
[ 2.149677] [<c075bbec>] (kernel_init_freeable+0xfc/0x1c8) from [<c054e1cc>] (kernel_init+0x8/0x118)
[ 2.158804] [<c054e1cc>] (kernel_init+0x8/0x118) from [<c000e738>] (ret_from_fork+0x14/0x3c)
[ 2.167252] ---[ end trace 2b7e969b76d1ea4e ]---
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] clk: tegra: Do not print errors for clk_round_rate()
[not found] ` <20131127163442.GA25458-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2013-11-27 22:33 ` Stefan Agner
@ 2013-11-27 22:52 ` Stefan Agner
1 sibling, 0 replies; 6+ messages in thread
From: Stefan Agner @ 2013-11-27 22:52 UTC (permalink / raw)
To: Thierry Reding
Cc: Peter De Schrijver, Mike Turquette,
linux-tegra-u79uwXL29TY76Z2rM5mHXA
On Wed, Nov 27, 2013 at 05:34:43PM +0100, Thierry Reding wrote:
> Cc'ing Stefan, since he reported this error or IRC. Stefan, can you
> check whether this fixes the issue you were seeing? In case you're not
> subscribed, please let me know and I'll resend the patch.
>
> Peter, if you're fine with applying as-is, can you add this:
>
> Reported-by: Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>
>
> to give proper credit?
>
Looks good to me, no more warning stacktraces on my setup.
Reported-and-tested-by: Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] clk: tegra: Do not print errors for clk_round_rate()
[not found] ` <1385569563-25408-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-11-27 16:34 ` Thierry Reding
2013-11-27 18:17 ` Mike Turquette
@ 2013-11-28 14:07 ` Peter De Schrijver
2 siblings, 0 replies; 6+ messages in thread
From: Peter De Schrijver @ 2013-11-28 14:07 UTC (permalink / raw)
To: Thierry Reding
Cc: Mike Turquette,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On Wed, Nov 27, 2013 at 05:26:03PM +0100, Thierry Reding wrote:
> clk_round_rate() can be used by drivers to determine whether or not a
> frequency is supported by the clock. The current Tegra clock driver
> outputs an error message and a stacktrace when the requested rate isn't
> supported. That's fine for clk_set_rate(), but it's confusing when all
> the driver does is query whether or not a frequency is supported.
>
Merged into clk-tegra-next
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-11-28 14:07 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-27 16:26 [PATCH] clk: tegra: Do not print errors for clk_round_rate() Thierry Reding
[not found] ` <1385569563-25408-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-11-27 16:34 ` Thierry Reding
[not found] ` <20131127163442.GA25458-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2013-11-27 22:33 ` Stefan Agner
2013-11-27 22:52 ` Stefan Agner
2013-11-27 18:17 ` Mike Turquette
2013-11-28 14:07 ` Peter De Schrijver
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox