diff options
author | William Breathitt Gray <wbg@kernel.org> | 2024-03-21 12:32:16 -0400 |
---|---|---|
committer | William Breathitt Gray <wbg@kernel.org> | 2024-04-02 13:15:03 -0400 |
commit | 916baadd293a4d11e08a7ca1e2968314451ade6c (patch) | |
tree | 8eec0c8cbac96f9dd36abac65ac4b3c2f885f7b8 /drivers/counter | |
parent | 4b986b68e6993c512106548ed712aebe40d3605e (diff) |
counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro
Reduce boilerplate by leveraging the COUNTER_COMP_FREQUENCY() macro to
define the "frequency" extension.
Link: https://lore.kernel.org/r/ZfxhEKdSi1amfcJC@ishi
Signed-off-by: William Breathitt Gray <wbg@kernel.org>
Diffstat (limited to 'drivers/counter')
-rw-r--r-- | drivers/counter/ti-ecap-capture.c | 2 |
1 files changed, 1 insertions, 1 deletions
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[] = { |