counter: microchip-tcb-capture: Convert to counter_priv() wrapper
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 30 Dec 2021 15:02:44 +0000 (16:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Dec 2021 16:44:06 +0000 (17:44 +0100)
This is a straight forward conversion to the new counter_priv() wrapper.

Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Acked-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20211230150300.72196-8-u.kleine-koenig@pengutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/counter/microchip-tcb-capture.c

index bb69f2e0ba93cdd13ecf62f1715e00c404d56d1a..1b56b7444668330c9bc8fd7f4fae5d90c4fbffab 100644 (file)
@@ -72,7 +72,7 @@ static int mchp_tc_count_function_read(struct counter_device *counter,
                                       struct counter_count *count,
                                       enum counter_function *function)
 {
-       struct mchp_tc_data *const priv = counter->priv;
+       struct mchp_tc_data *const priv = counter_priv(counter);
 
        if (priv->qdec_mode)
                *function = COUNTER_FUNCTION_QUADRATURE_X4;
@@ -86,7 +86,7 @@ static int mchp_tc_count_function_write(struct counter_device *counter,
                                        struct counter_count *count,
                                        enum counter_function function)
 {
-       struct mchp_tc_data *const priv = counter->priv;
+       struct mchp_tc_data *const priv = counter_priv(counter);
        u32 bmr, cmr;
 
        regmap_read(priv->regmap, ATMEL_TC_BMR, &bmr);
@@ -148,7 +148,7 @@ static int mchp_tc_count_signal_read(struct counter_device *counter,
                                     struct counter_signal *signal,
                                     enum counter_signal_level *lvl)
 {
-       struct mchp_tc_data *const priv = counter->priv;
+       struct mchp_tc_data *const priv = counter_priv(counter);
        bool sigstatus;
        u32 sr;
 
@@ -169,7 +169,7 @@ static int mchp_tc_count_action_read(struct counter_device *counter,
                                     struct counter_synapse *synapse,
                                     enum counter_synapse_action *action)
 {
-       struct mchp_tc_data *const priv = counter->priv;
+       struct mchp_tc_data *const priv = counter_priv(counter);
        u32 cmr;
 
        regmap_read(priv->regmap, ATMEL_TC_REG(priv->channel[0], CMR), &cmr);
@@ -197,7 +197,7 @@ static int mchp_tc_count_action_write(struct counter_device *counter,
                                      struct counter_synapse *synapse,
                                      enum counter_synapse_action action)
 {
-       struct mchp_tc_data *const priv = counter->priv;
+       struct mchp_tc_data *const priv = counter_priv(counter);
        u32 edge = ATMEL_TC_ETRGEDG_NONE;
 
        /* QDEC mode is rising edge only */
@@ -230,7 +230,7 @@ static int mchp_tc_count_action_write(struct counter_device *counter,
 static int mchp_tc_count_read(struct counter_device *counter,
                              struct counter_count *count, u64 *val)
 {
-       struct mchp_tc_data *const priv = counter->priv;
+       struct mchp_tc_data *const priv = counter_priv(counter);
        u32 cnt;
 
        regmap_read(priv->regmap, ATMEL_TC_REG(priv->channel[0], CV), &cnt);