This is a note to let you know that I've just added the patch titled net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit to the 6.2-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: net-phy-nxp-c45-tja11xx-fix-mii_basic_config_rev-bit.patch and it can be found in the queue-6.2 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 8ba572052a4b8fe5b205854d27e54e3486049b71 Mon Sep 17 00:00:00 2001 From: "Radu Pirea (OSS)" <radu-nicolae.pirea@xxxxxxxxxxx> Date: Thu, 9 Mar 2023 12:01:11 +0200 Subject: net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit From: Radu Pirea (OSS) <radu-nicolae.pirea@xxxxxxxxxxx> commit 8ba572052a4b8fe5b205854d27e54e3486049b71 upstream. According to the TJA1103 user manual, the bit for the reversed role in MII or RMII modes is bit 4. Cc: <stable@xxxxxxxxxxxxxxx> # 5.15+ Fixes: b050f2f15e04 ("phy: nxp-c45: add driver for tja1103") Signed-off-by: Radu Pirea (OSS) <radu-nicolae.pirea@xxxxxxxxxxx> Link: https://lore.kernel.org/r/20230309100111.1246214-1-radu-nicolae.pirea@xxxxxxxxxxx Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/phy/nxp-c45-tja11xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/phy/nxp-c45-tja11xx.c +++ b/drivers/net/phy/nxp-c45-tja11xx.c @@ -79,7 +79,7 @@ #define SGMII_ABILITY BIT(0) #define VEND1_MII_BASIC_CONFIG 0xAFC6 -#define MII_BASIC_CONFIG_REV BIT(8) +#define MII_BASIC_CONFIG_REV BIT(4) #define MII_BASIC_CONFIG_SGMII 0x9 #define MII_BASIC_CONFIG_RGMII 0x7 #define MII_BASIC_CONFIG_RMII 0x5 Patches currently in stable-queue which might be from radu-nicolae.pirea@xxxxxxxxxxx are queue-6.2/net-phy-nxp-c45-tja11xx-fix-mii_basic_config_rev-bit.patch