Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

i3c: Switch to use new i3c_xfer from i3c_priv_xfer

Switch to use i3c_xfer instead of i3c_priv_xfer because framework update to
support HDR mode. i3c_priv_xfer is now an alias of i3c_xfer.

Signed-off-by: Frank Li <Frank.Li@nxp.com>
Link: https://patch.msgid.link/20251106-i3c_ddr-v11-2-33a6a66ed095@nxp.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Frank Li and committed by
Alexandre Belloni
9280b6eb 256a2174

+2 -2
+2 -2
include/linux/i3c/device.h
··· 27 27 * These are the standard error codes as defined by the I3C specification. 28 28 * When -EIO is returned by the i3c_device_do_priv_xfers() or 29 29 * i3c_device_send_hdr_cmds() one can check the error code in 30 - * &struct_i3c_priv_xfer.err or &struct i3c_hdr_cmd.err to get a better idea of 30 + * &struct_i3c_xfer.err or &struct i3c_hdr_cmd.err to get a better idea of 31 31 * what went wrong. 32 32 * 33 33 */ ··· 312 312 int nxfers, enum i3c_xfer_mode mode); 313 313 314 314 static inline int i3c_device_do_priv_xfers(struct i3c_device *dev, 315 - struct i3c_priv_xfer *xfers, 315 + struct i3c_xfer *xfers, 316 316 int nxfers) 317 317 { 318 318 return i3c_device_do_xfers(dev, xfers, nxfers, I3C_SDR);