treewide: replace '---help---' in Kconfig files with 'help'Since commit 84af7a6194e4 ("checkpatch: kconfig: prefer 'help' over'---help---'"), the number of '---help---' has been graduallydecreasi
treewide: replace '---help---' in Kconfig files with 'help'Since commit 84af7a6194e4 ("checkpatch: kconfig: prefer 'help' over'---help---'"), the number of '---help---' has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found. a) 4 spaces + '---help---' b) 7 spaces + '---help---' c) 8 spaces + '---help---' d) 1 space + 1 tab + '---help---' e) 1 tab + '---help---' (correct indentation) f) 1 tab + 1 space + '---help---' g) 1 tab + 2 spaces + '---help---'In order to convert all of them to 1 tab + 'help', I ran thefollowing commend: $ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
show more ...
net: dsa: propagate resolved link config via mac_link_up()Propagate the resolved link configuration down via DSA'sphylink_mac_link_up() operation to allow split PCS/MAC to work.Tested-by: Vladim
net: dsa: propagate resolved link config via mac_link_up()Propagate the resolved link configuration down via DSA'sphylink_mac_link_up() operation to allow split PCS/MAC to work.Tested-by: Vladimir Oltean <vladimir.oltean@nxp.com>Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>Signed-off-by: David S. Miller <davem@davemloft.net>
net: dsa: Get information about stacked DSA protocolIt is possible to stack multiple DSA switches in a way that they are notpart of the tree (disjoint) but the DSA master of a switch is a DSAslav
net: dsa: Get information about stacked DSA protocolIt is possible to stack multiple DSA switches in a way that they are notpart of the tree (disjoint) but the DSA master of a switch is a DSAslave of another. When that happens switch drivers may have to know thisis the case so as to determine whether their tagging protocol has aremove chance of working.This is useful for specific switch drivers such as b53 where deviceshave been known to be stacked in the wild without the Broadcom tagprotocol supporting that feature. This allows b53 to continue supportingthose devices by forcing the disabling of Broadcom tags on the outermostswitches if necessary.The get_tag_protocol() function is therefore updated to gain anadditional enum dsa_tag_protocol argument which denotes the currenttagging protocol used by the DSA master we are attached to, elseDSA_TAG_PROTO_NONE for the top of the dsa_switch_tree.Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>Signed-off-by: David S. Miller <davem@davemloft.net>
net: dsa: qca: ar9331: drop pointless static qualifier in ar9331_sw_mbus_initThere is no need to set variable 'mbus' staticsince new value always be assigned before use it.Signed-off-by: Mao Wen
net: dsa: qca: ar9331: drop pointless static qualifier in ar9331_sw_mbus_initThere is no need to set variable 'mbus' staticsince new value always be assigned before use it.Signed-off-by: Mao Wenan <maowenan@huawei.com>Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de>Reviewed-by: Andrew Lunn <andrew@lunn.ch>Signed-off-by: David S. Miller <davem@davemloft.net>
net: dsa: add support for Atheros AR9331 built-in switchProvide basic support for Atheros AR9331 built-in switch. So far itworks as port multiplexer without any hardware offloading support.Revie
net: dsa: add support for Atheros AR9331 built-in switchProvide basic support for Atheros AR9331 built-in switch. So far itworks as port multiplexer without any hardware offloading support.Reviewed-by: Andrew Lunn <andrew@lunn.ch>Reviewed-by: Vivien Didelot <vivien.didelot@gmail.com>Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>Signed-off-by: David S. Miller <davem@davemloft.net>
12345