The count_read callback passes unsigned long now.

Cc: Fabrice Gasnier <fabrice.gasn...@st.com>
Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com>
---
 drivers/counter/stm32-lptimer-cnt.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/counter/stm32-lptimer-cnt.c 
b/drivers/counter/stm32-lptimer-cnt.c
index bbc930a5962c..73bb773f5e6d 100644
--- a/drivers/counter/stm32-lptimer-cnt.c
+++ b/drivers/counter/stm32-lptimer-cnt.c
@@ -377,8 +377,7 @@ static enum counter_synapse_action 
stm32_lptim_cnt_synapse_actions[] = {
 };
 
 static int stm32_lptim_cnt_read(struct counter_device *counter,
-                               struct counter_count *count,
-                               struct counter_count_read_value *val)
+                               struct counter_count *count, unsigned long *val)
 {
        struct stm32_lptim_cnt *const priv = counter->priv;
        u32 cnt;
@@ -388,7 +387,7 @@ static int stm32_lptim_cnt_read(struct counter_device 
*counter,
        if (ret)
                return ret;
 
-       counter_count_read_value_set(val, COUNTER_COUNT_POSITION, &cnt);
+       *val = cnt;
 
        return 0;
 }
-- 
2.23.0

Reply via email to