Patch "net: dsa: mv88e6xxx: depend on PTP conditionally" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: dsa: mv88e6xxx: depend on PTP conditionally

to the 6.1-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-dsa-mv88e6xxx-depend-on-ptp-conditionally.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit c459b9c01a4f02052538e19d3528765d9b3e7089
Author: Johnny S. Lee <foss@xxxxxx>
Date:   Thu Dec 22 22:34:05 2022 +0800

    net: dsa: mv88e6xxx: depend on PTP conditionally
    
    [ Upstream commit 30e725537546248bddc12eaac2fe0a258917f190 ]
    
    PTP hardware timestamping related objects are not linked when PTP
    support for MV88E6xxx (NET_DSA_MV88E6XXX_PTP) is disabled, therefore
    NET_DSA_MV88E6XXX should not depend on PTP_1588_CLOCK_OPTIONAL
    regardless of NET_DSA_MV88E6XXX_PTP.
    
    Instead, condition more strictly on how NET_DSA_MV88E6XXX_PTP's
    dependencies are met, making sure that it cannot be enabled when
    NET_DSA_MV88E6XXX=y and PTP_1588_CLOCK=m.
    
    In other words, this commit allows NET_DSA_MV88E6XXX to be built-in
    while PTP_1588_CLOCK is a module, as long as NET_DSA_MV88E6XXX_PTP is
    prevented from being enabled.
    
    Fixes: e5f31552674e ("ethernet: fix PTP_1588_CLOCK dependencies")
    Signed-off-by: Johnny S. Lee <foss@xxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/dsa/mv88e6xxx/Kconfig b/drivers/net/dsa/mv88e6xxx/Kconfig
index 7a2445a34eb7..e3181d5471df 100644
--- a/drivers/net/dsa/mv88e6xxx/Kconfig
+++ b/drivers/net/dsa/mv88e6xxx/Kconfig
@@ -2,7 +2,6 @@
 config NET_DSA_MV88E6XXX
 	tristate "Marvell 88E6xxx Ethernet switch fabric support"
 	depends on NET_DSA
-	depends on PTP_1588_CLOCK_OPTIONAL
 	select IRQ_DOMAIN
 	select NET_DSA_TAG_EDSA
 	select NET_DSA_TAG_DSA
@@ -13,7 +12,8 @@ config NET_DSA_MV88E6XXX
 config NET_DSA_MV88E6XXX_PTP
 	bool "PTP support for Marvell 88E6xxx"
 	default n
-	depends on NET_DSA_MV88E6XXX && PTP_1588_CLOCK
+	depends on (NET_DSA_MV88E6XXX = y && PTP_1588_CLOCK = y) || \
+	           (NET_DSA_MV88E6XXX = m && PTP_1588_CLOCK)
 	help
 	  Say Y to enable PTP hardware timestamping on Marvell 88E6xxx switch
 	  chips that support it.



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux