mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 03:26:40 +07:00
ppp: define "ppp" device type
Let PPP devices be identified as such in /sys/class/net/<iface>/uevent. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e286213484
commit
94dbffe16e
@ -1138,9 +1138,15 @@ static const struct net_device_ops ppp_netdev_ops = {
|
||||
.ndo_get_stats64 = ppp_get_stats64,
|
||||
};
|
||||
|
||||
static struct device_type ppp_type = {
|
||||
.name = "ppp",
|
||||
};
|
||||
|
||||
static void ppp_setup(struct net_device *dev)
|
||||
{
|
||||
dev->netdev_ops = &ppp_netdev_ops;
|
||||
SET_NETDEV_DEVTYPE(dev, &ppp_type);
|
||||
|
||||
dev->hard_header_len = PPP_HDRLEN;
|
||||
dev->mtu = PPP_MRU;
|
||||
dev->addr_len = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user