From: Geert Uytterhoeven Date: Wed, 18 Jan 2023 10:39:24 +0000 (+0100) Subject: phy: phy-can-transceiver: Add support for NXP TJR1443 X-Git-Tag: v6.3-rc1~97^2~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b41499a1085b9278d73c6132d49849a6a86a81bc;p=thirdparty%2Fkernel%2Fstable.git phy: phy-can-transceiver: Add support for NXP TJR1443 The NXP TJR1443 High-speed CAN transceiver with Sleep mode is a pin-compatible alternative for the TI TCAN1043. Signed-off-by: Geert Uytterhoeven Acked-by: Marc Kleine-Budde Link: https://lore.kernel.org/r/0bfa1e4c43632e49c9512b4e7daa970545545dcf.1674037830.git.geert+renesas@glider.be Signed-off-by: Vinod Koul --- diff --git a/drivers/phy/phy-can-transceiver.c b/drivers/phy/phy-can-transceiver.c index 95c6dbb52da72..e556a0faf0fc5 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);