ASoC: Intel: Atom: fix inversion between __iowrite32 and __ioread32
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Tue, 24 Jul 2018 21:12:48 +0000 (16:12 -0500)
committerMark Brown <broonie@kernel.org>
Wed, 25 Jul 2018 16:21:22 +0000 (17:21 +0100)
This looks like a copy/paste issue, but clearly there is an inversion
that is obvious when checking the arguments.

Detected with Sparse - now that we have fewer warnings this one was
easy to find.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/atom/sst/sst_loader.c

index a686eef2cf7f7a1a4a7f7f23a00808122734a850..27413ebae9566eb356abbd44ec4bb62b9e5cdc90 100644 (file)
@@ -44,15 +44,15 @@ void memcpy32_toio(void __iomem *dst, const void *src, int count)
        /* __iowrite32_copy uses 32-bit count values so divide by 4 for
         * right count in words
         */
-       __iowrite32_copy(dst, src, count/4);
+       __iowrite32_copy(dst, src, count / 4);
 }
 
 void memcpy32_fromio(void *dst, const void __iomem *src, int count)
 {
-       /* __iowrite32_copy uses 32-bit count values so divide by 4 for
+       /* __ioread32_copy uses 32-bit count values so divide by 4 for
         * right count in words
         */
-       __iowrite32_copy(dst, src, count/4);
+       __ioread32_copy(dst, src, count / 4);
 }
 
 /**