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.

net: mctp i3c: switch to use i3c_xfer from i3c_priv_xfer

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

Replace i3c_device_do_priv_xfers() with i3c_device_do_xfers(..., I3C_SDR)
to align with the new API.

Prepare for removal of i3c_priv_xfer and i3c_device_do_priv_xfers().

Signed-off-by: Frank Li <Frank.Li@nxp.com>
Acked-by: Matt Johnston <matt@codeconstruct.com.au>
Link: https://patch.msgid.link/20251028-lm75-v1-2-9bf88989c49c@nxp.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Frank Li and committed by
Alexandre Belloni
57c4011d 1f08a91c

+4 -4
+4 -4
drivers/net/mctp/mctp-i3c.c
··· 99 99 100 100 static int mctp_i3c_read(struct mctp_i3c_device *mi) 101 101 { 102 - struct i3c_priv_xfer xfer = { .rnw = 1, .len = mi->mrl }; 102 + struct i3c_xfer xfer = { .rnw = 1, .len = mi->mrl }; 103 103 struct net_device_stats *stats = &mi->mbus->ndev->stats; 104 104 struct mctp_i3c_internal_hdr *ihdr = NULL; 105 105 struct sk_buff *skb = NULL; ··· 127 127 128 128 /* Make sure netif_rx() is read in the same order as i3c. */ 129 129 mutex_lock(&mi->lock); 130 - rc = i3c_device_do_priv_xfers(mi->i3c, &xfer, 1); 130 + rc = i3c_device_do_xfers(mi->i3c, &xfer, 1, I3C_SDR); 131 131 if (rc < 0) 132 132 goto err; 133 133 ··· 360 360 static void mctp_i3c_xmit(struct mctp_i3c_bus *mbus, struct sk_buff *skb) 361 361 { 362 362 struct net_device_stats *stats = &mbus->ndev->stats; 363 - struct i3c_priv_xfer xfer = { .rnw = false }; 363 + struct i3c_xfer xfer = { .rnw = false }; 364 364 struct mctp_i3c_internal_hdr *ihdr = NULL; 365 365 struct mctp_i3c_device *mi = NULL; 366 366 unsigned int data_len; ··· 409 409 data[data_len] = pec; 410 410 411 411 xfer.data.out = data; 412 - rc = i3c_device_do_priv_xfers(mi->i3c, &xfer, 1); 412 + rc = i3c_device_do_xfers(mi->i3c, &xfer, 1, I3C_SDR); 413 413 if (rc == 0) { 414 414 stats->tx_bytes += data_len; 415 415 stats->tx_packets++;