From: Luiz Angelo Daros de Luca Date: Wed, 9 Mar 2022 17:56:42 +0000 (-0300) Subject: net: dsa: tag_rtl8_4: fix typo in modalias name X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3126b731ceb168b3a780427873c417f2abdd5527;p=linux.git net: dsa: tag_rtl8_4: fix typo in modalias name DSA_TAG_PROTO_RTL8_4L is not defined. It should be DSA_TAG_PROTO_RTL8_4T. Fixes: cd87fecdedd7 ("net: dsa: tag_rtl8_4: add rtl8_4t trailing variant") Reported-by: Arınç ÜNAL Signed-off-by: Luiz Angelo Daros de Luca Reviewed-by: Florian Fainelli Link: https://lore.kernel.org/r/20220309175641.12943-1-luizluca@gmail.com Signed-off-by: Jakub Kicinski --- diff --git a/net/dsa/tag_rtl8_4.c b/net/dsa/tag_rtl8_4.c index 71fec45fd0ea2..a593ead7ff26a 100644 --- a/net/dsa/tag_rtl8_4.c +++ b/net/dsa/tag_rtl8_4.c @@ -247,7 +247,7 @@ static const struct dsa_device_ops rtl8_4t_netdev_ops = { DSA_TAG_DRIVER(rtl8_4t_netdev_ops); -MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_RTL8_4L); +MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_RTL8_4T); static struct dsa_tag_driver *dsa_tag_drivers[] = { &DSA_TAG_DRIVER_NAME(rtl8_4_netdev_ops),