forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: dsa: realtek: convert subdrivers into modules
Preparing for multiple interfaces support, the drivers must be independent of realtek-smi. Signed-off-by: Luiz Angelo Daros de Luca <[email protected]> Tested-by: Arınç ÜNAL <[email protected]> Reviewed-by: Linus Walleij <[email protected]> Reviewed-by: Alvin Šipraga <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
6 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-$(CONFIG_NET_DSA_REALTEK_SMI) += realtek-smi.o | ||
realtek-smi-objs := realtek-smi-core.o rtl8366.o rtl8366rb.o rtl8365mb.o | ||
obj-$(CONFIG_NET_DSA_REALTEK_RTL8366RB) += rtl8366.o | ||
rtl8366-objs := rtl8366-core.o rtl8366rb.o | ||
obj-$(CONFIG_NET_DSA_REALTEK_RTL8365MB) += rtl8365mb.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -494,19 +494,23 @@ static void realtek_smi_shutdown(struct platform_device *pdev) | |
} | ||
|
||
static const struct of_device_id realtek_smi_of_match[] = { | ||
#if IS_ENABLED(CONFIG_NET_DSA_REALTEK_RTL8366RB) | ||
{ | ||
.compatible = "realtek,rtl8366rb", | ||
.data = &rtl8366rb_variant, | ||
}, | ||
#endif | ||
{ | ||
/* FIXME: add support for RTL8366S and more */ | ||
.compatible = "realtek,rtl8366s", | ||
.data = NULL, | ||
}, | ||
#if IS_ENABLED(CONFIG_NET_DSA_REALTEK_RTL8365MB) | ||
{ | ||
.compatible = "realtek,rtl8365mb", | ||
.data = &rtl8365mb_variant, | ||
}, | ||
#endif | ||
{ /* sentinel */ }, | ||
}; | ||
MODULE_DEVICE_TABLE(of, realtek_smi_of_match); | ||
|
@@ -522,4 +526,6 @@ static struct platform_driver realtek_smi_driver = { | |
}; | ||
module_platform_driver(realtek_smi_driver); | ||
|
||
MODULE_AUTHOR("Linus Walleij <[email protected]>"); | ||
MODULE_DESCRIPTION("Driver for Realtek ethernet switch connected via SMI interface"); | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1986,3 +1986,7 @@ const struct realtek_variant rtl8365mb_variant = { | |
.chip_data_sz = sizeof(struct rtl8365mb), | ||
}; | ||
EXPORT_SYMBOL_GPL(rtl8365mb_variant); | ||
|
||
MODULE_AUTHOR("Alvin Šipraga <[email protected]>"); | ||
MODULE_DESCRIPTION("Driver for RTL8365MB-VC ethernet switch"); | ||
MODULE_LICENSE("GPL"); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1816,3 +1816,7 @@ const struct realtek_variant rtl8366rb_variant = { | |
.chip_data_sz = sizeof(struct rtl8366rb), | ||
}; | ||
EXPORT_SYMBOL_GPL(rtl8366rb_variant); | ||
|
||
MODULE_AUTHOR("Linus Walleij <[email protected]>"); | ||
MODULE_DESCRIPTION("Driver for RTL8366RB ethernet switch"); | ||
MODULE_LICENSE("GPL"); |