Commit eed22a06 authored by Taehee Yoo's avatar Taehee Yoo Committed by David S. Miller
Browse files

net: rmnet: add missing module alias



In the current rmnet code, there is no module alias.
So, RTNL couldn't load rmnet module automatically.

Test commands:
    ip link add dummy0 type dummy
    modprobe -rv rmnet
    ip link add rmnet0 link dummy0 type rmnet  mux_id 1

Signed-off-by: default avatarTaehee Yoo <ap420073@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent aec128f9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -475,4 +475,5 @@ static void __exit rmnet_exit(void)

module_init(rmnet_init)
module_exit(rmnet_exit)
MODULE_ALIAS_RTNL_LINK("rmnet");
MODULE_LICENSE("GPL v2");