"Das U-Boot" Source Tree
0
fork

Configure Feed

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

drivers: i3c: master: Enable probe i3c without slave device

Picked linux i3c driver upstraming patch to fix the issue to
probe for i3c controller without slave device attached.
With this fix, the ret check will be on command error and will success
without slave device attached.

Signed-off-by: Dinesh Maniyam <dinesh.maniyam@altera.com>

authored by

Dinesh Maniyam and committed by
Heiko Schocher
b5cf7cd1 ca4c92cb

+6
+6
drivers/i3c/master.c
··· 452 452 453 453 i3c_ccc_cmd_dest_cleanup(&dest); 454 454 455 + if (ret) 456 + ret = cmd.err; 457 + 455 458 return ret; 456 459 } 457 460 ··· 506 509 &dest, 1); 507 510 ret = i3c_master_send_ccc_cmd_locked(master, &cmd); 508 511 i3c_ccc_cmd_dest_cleanup(&dest); 512 + 513 + if (ret) 514 + ret = cmd.err; 509 515 510 516 return ret; 511 517 }