Skip to content

Commit a896a8a

Browse files
wentongwugregkh
authored andcommitted
mei: vsc: Utilize the appropriate byte order swap function
Switch from cpu_to_be32_array() to be32_to_cpu_array() for the received ROM data. Fixes: 566f5ca ("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>
1 parent a9e8fe3 commit a896a8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/misc/mei/vsc-tp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ int vsc_tp_rom_xfer(struct vsc_tp *tp, const void *obuf, void *ibuf, size_t len)
336336
return ret;
337337

338338
if (ibuf)
339-
cpu_to_be32_array(ibuf, tp->rx_buf, words);
339+
be32_to_cpu_array(ibuf, tp->rx_buf, words);
340340

341341
return ret;
342342
}

0 commit comments

Comments
 (0)