diff options
author | Luiz Angelo Daros de Luca <luizluca@gmail.com> | 2022-01-28 03:05:01 -0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-01-28 15:02:49 +0000 |
commit | 765c39a4fafe6f7ea0d370aa5f30c811579cf8eb (patch) | |
tree | 4da890953c409e22ed5b8a8ae06e9e4cfebe49a9 /drivers/net/dsa/realtek/Makefile | |
parent | cd645dc556e2f633cee88a3f1ca3e7209bcdaa7e (diff) |
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 <luizluca@gmail.com>
Tested-by: Arınç ÜNAL <arinc.unal@arinc9.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Alvin Šipraga <alsi@bang-olufsen.dk>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/realtek/Makefile')
-rw-r--r-- | drivers/net/dsa/realtek/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/dsa/realtek/Makefile b/drivers/net/dsa/realtek/Makefile index 323b921bfce0..8b5a4abcedd3 100644 --- a/drivers/net/dsa/realtek/Makefile +++ b/drivers/net/dsa/realtek/Makefile @@ -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 |