spi: Remove the obsolte u64_stats_fetch_*_irq() users.
authorThomas Gleixner <tglx@linutronix.de>
Wed, 26 Oct 2022 12:29:51 +0000 (14:29 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 26 Oct 2022 13:18:39 +0000 (14:18 +0100)
Now that the 32bit UP oddity is gone and 32bit uses always a sequence
count, there is no need for the fetch_irq() variants anymore.

Convert to the regular interface.

Cc: Mark Brown <broonie@kernel.org>
Cc: linux-spi@vger.kernel.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20221026122951.331638-1-bigeasy@linutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi.c

index aaf07052fd019643f65d7c558c7c83dcc661e086..8df8b93df1c311a2034aaff0f57e101fe960e45e 100644 (file)
@@ -127,10 +127,10 @@ do {                                                                      \
                unsigned int start;                                     \
                pcpu_stats = per_cpu_ptr(in, i);                        \
                do {                                                    \
-                       start = u64_stats_fetch_begin_irq(              \
+                       start = u64_stats_fetch_begin(          \
                                        &pcpu_stats->syncp);            \
                        inc = u64_stats_read(&pcpu_stats->field);       \
-               } while (u64_stats_fetch_retry_irq(                     \
+               } while (u64_stats_fetch_retry(                 \
                                        &pcpu_stats->syncp, start));    \
                ret += inc;                                             \
        }                                                               \