Message ID | 0bfa1e4c43632e49c9512b4e7daa970545545dcf.1674037830.git.geert+renesas@glider.be |
---|---|
State | Accepted |
Commit | 826acac238ee2f025a1a79c41e1034bbbffb55f0 |
Headers | show |
Series | phy: Add support for NXP TJR1443 CAN Transceiver | expand |
diff --git a/drivers/phy/phy-can-transceiver.c b/drivers/phy/phy-can-transceiver.c index ce511ad5d3690763..5487b9dd1ead1aca 100644 --- a/drivers/phy/phy-can-transceiver.c +++ b/drivers/phy/phy-can-transceiver.c @@ -84,6 +84,10 @@ static const struct of_device_id can_transceiver_phy_ids[] = { .compatible = "ti,tcan1043", .data = &tcan1043_drvdata }, + { + .compatible = "nxp,tjr1443", + .data = &tcan1043_drvdata + }, { } }; MODULE_DEVICE_TABLE(of, can_transceiver_phy_ids);
The NXP TJR1443 High-speed CAN transceiver with Sleep mode is a pin-compatible alternative for the TI TCAN1043. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- drivers/phy/phy-can-transceiver.c | 4 ++++ 1 file changed, 4 insertions(+)