[PATCH] counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro

William Breathitt Gray posted 1 patch 1 year, 10 months ago
drivers/counter/ti-ecap-capture.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro
Posted by William Breathitt Gray 1 year, 10 months ago
Reduce boilerplate by leveraging the COUNTER_COMP_FREQUENCY() macro to
define the "frequency" extension.

Signed-off-by: William Breathitt Gray <wbg@kernel.org>
---
 drivers/counter/ti-ecap-capture.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/counter/ti-ecap-capture.c b/drivers/counter/ti-ecap-capture.c
index d33d35055b91..675447315caf 100644
--- a/drivers/counter/ti-ecap-capture.c
+++ b/drivers/counter/ti-ecap-capture.c
@@ -369,7 +369,7 @@ static const enum counter_synapse_action ecap_cnt_input_actions[] = {
 };
 
 static struct counter_comp ecap_cnt_clock_ext[] = {
-	COUNTER_COMP_SIGNAL_U64("frequency", ecap_cnt_clk_get_freq, NULL),
+	COUNTER_COMP_FREQUENCY(ecap_cnt_clk_get_freq),
 };
 
 static const enum counter_signal_polarity ecap_cnt_pol_avail[] = {

base-commit: eca588187f9129300c6e44d64b819545cede463d
-- 
2.44.0

Re: [PATCH] counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro
Posted by William Breathitt Gray 1 year, 10 months ago
On Thu, 21 Mar 2024 12:32:16 -0400, William Breathitt Gray wrote:
> Reduce boilerplate by leveraging the COUNTER_COMP_FREQUENCY() macro to
> define the "frequency" extension.
> 
> 

Applied, thanks!

[1/1] counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro
      commit: 916baadd293a4d11e08a7ca1e2968314451ade6c

Best regards,
-- 
William Breathitt Gray <wbg@kernel.org>