diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2021-05-05 14:18:43 +0900 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-09-26 00:32:17 +0200 |
commit | 2ec38bfea1f5a66848a086f1cc09844c66512847 (patch) | |
tree | 7d76450a9ee8eed91d66a6892da55d898a9681ce /target/linux/realtek/files-5.10/drivers | |
parent | 2cd00b51470a30198b048a5fca48a04db77e29cc (diff) | |
download | upstream-2ec38bfea1f5a66848a086f1cc09844c66512847.tar.gz upstream-2ec38bfea1f5a66848a086f1cc09844c66512847.tar.bz2 upstream-2ec38bfea1f5a66848a086f1cc09844c66512847.zip |
realtek: fix "help" line in Kconfig in files/patches for 5.10
In Kernel 5.10, "help" must be used instead of "---help---".
this patch fixes the following errors:
drivers/net/dsa/rtl83xx/Kconfig:7: syntax errorgit
drivers/net/dsa/rtl83xx/Kconfig:6: unknown statement "---help---"
drivers/net/dsa/rtl83xx/Kconfig:7:warning: ignoring unsupported character '.'
drivers/net/dsa/rtl83xx/Kconfig:7: unknown statement "This"
drivers/net/ethernet/Kconfig:170: syntax error
drivers/net/ethernet/Kconfig:169: unknown statement "---help---"
drivers/net/ethernet/Kconfig:170:warning: ignoring unsupported character '.'
drivers/net/ethernet/Kconfig:170: unknown statement "Say"
drivers/net/phy/Kconfig:331: syntax error
drivers/net/phy/Kconfig:330: unknown statement "---help---"
drivers/net/phy/Kconfig:331: unknown statement "Supports"
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target/linux/realtek/files-5.10/drivers')
-rw-r--r-- | target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/Kconfig b/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/Kconfig index f293832eb5..b423d2c3ea 100644 --- a/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/Kconfig +++ b/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/Kconfig @@ -3,6 +3,6 @@ config NET_DSA_RTL83XX tristate "Realtek RTL838x/RTL839x switch support" depends on RTL838X select NET_DSA_TAG_TRAILER - ---help--- + help This driver adds support for Realtek RTL83xx series switching. |