[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YcwPtc2STMA/mKKj@shinobu>
Date: Wed, 29 Dec 2021 16:35:17 +0900
From: William Breathitt Gray <vilhelm.gray@...il.com>
To: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
Cc: Lars-Peter Clausen <lars@...afoo.de>, kernel@...gutronix.de,
Jonathan Cameron <Jonathan.Cameron@...wei.com>,
linux-iio@...r.kernel.org,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-kernel@...r.kernel.org,
Kamel Bouhara <kamel.bouhara@...tlin.com>,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH v2 07/23] counter: microchip-tcb-capture: Convert to
counter_priv() wrapper
On Mon, Dec 27, 2021 at 10:45:10AM +0100, Uwe Kleine-König wrote:
> This is a straight forward conversion to the new counter_priv() wrapper.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
Acked-by: William Breathitt Gray <vilhelm.gray@...il.com>
> ---
> drivers/counter/microchip-tcb-capture.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/counter/microchip-tcb-capture.c b/drivers/counter/microchip-tcb-capture.c
> index bb69f2e0ba93..1b56b7444668 100644
> --- a/drivers/counter/microchip-tcb-capture.c
> +++ b/drivers/counter/microchip-tcb-capture.c
> @@ -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);
> --
> 2.33.0
>
Download attachment "signature.asc" of type "application/pgp-signature" (834 bytes)
Powered by blists - more mailing lists