]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mei: vsc: Utilize the appropriate byte order swap function
authorWentong Wu <wentong.wu@intel.com>
Tue, 25 Jun 2024 08:10:45 +0000 (16:10 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 4 Jul 2024 10:21:39 +0000 (12:21 +0200)
Switch from cpu_to_be32_array() to be32_to_cpu_array() for the
received ROM data.

Fixes: 566f5ca97680 ("mei: Add transport driver for IVSC device")
Cc: stable@vger.kernel.org # for 6.8+
Signed-off-by: Wentong Wu <wentong.wu@intel.com>
Tested-by: Jason Chen <jason.z.chen@intel.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Link: https://lore.kernel.org/r/20240625081047.4178494-4-wentong.wu@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/vsc-tp.c

index 5f3195636e53719765eb1a2422d1155f82aa982f..876330474444be6fb9032f136c19e3d472c2ece3 100644 (file)
@@ -336,7 +336,7 @@ int vsc_tp_rom_xfer(struct vsc_tp *tp, const void *obuf, void *ibuf, size_t len)
                return ret;
 
        if (ibuf)
-               cpu_to_be32_array(ibuf, tp->rx_buf, words);
+               be32_to_cpu_array(ibuf, tp->rx_buf, words);
 
        return ret;
 }