Message ID | 20231110120546.15540-1-kabel@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 438cbcdf105d84449fceb39a2d0e16d0ec20708f |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] net: mdio: fix typo in header | expand |
On Fri, Nov 10, 2023 at 01:05:46PM +0100, Marek Behún wrote: > The quotes symbol in > "EEE "link partner ability 1 > should be at the end of the register name > "EEE link partner ability 1" > > Signed-off-by: Marek Behún <kabel@kernel.org> This should really have a Fixes: tag. Otherwise: Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
Hello: This patch was applied to netdev/net.git (main) by David S. Miller <davem@davemloft.net>: On Fri, 10 Nov 2023 13:05:46 +0100 you wrote: > The quotes symbol in > "EEE "link partner ability 1 > should be at the end of the register name > "EEE link partner ability 1" > > Signed-off-by: Marek Behún <kabel@kernel.org> > > [...] Here is the summary with links: - [net] net: mdio: fix typo in header https://git.kernel.org/netdev/net/c/438cbcdf105d You are awesome, thank you!
diff --git a/include/linux/mdio.h b/include/linux/mdio.h index 8fa23bdcedbf..007fd9c3e4b6 100644 --- a/include/linux/mdio.h +++ b/include/linux/mdio.h @@ -420,7 +420,7 @@ static inline u32 linkmode_adv_to_mii_t1_adv_m_t(unsigned long *advertising) * A function that translates value of following registers to the linkmode: * IEEE 802.3-2018 45.2.3.10 "EEE control and capability 1" register (3.20) * IEEE 802.3-2018 45.2.7.13 "EEE advertisement 1" register (7.60) - * IEEE 802.3-2018 45.2.7.14 "EEE "link partner ability 1 register (7.61) + * IEEE 802.3-2018 45.2.7.14 "EEE link partner ability 1" register (7.61) */ static inline void mii_eee_cap1_mod_linkmode_t(unsigned long *adv, u32 val) {
The quotes symbol in "EEE "link partner ability 1 should be at the end of the register name "EEE link partner ability 1" Signed-off-by: Marek Behún <kabel@kernel.org> --- include/linux/mdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)