1WIMAX_DEV_ADD(9) Linux Networking WIMAX_DEV_ADD(9)
2
3
4
6 wimax_dev_add - Register a new WiMAX device
7
9 int wimax_dev_add(struct wimax_dev * wimax_dev,
10 struct net_device * net_dev);
11
13 wimax_dev
14 WiMAX device descriptor (as embedded in your net_dev's priv data).
15 You must have called wimax_dev_init on it before.
16
17 net_dev
18 net device the wimax_dev is associated with. The function expects
19 SET_NETDEV_DEV and register_netdev were already called on it.
20
22 Registers the new WiMAX device, sets up the user-kernel control
23 interface (generic netlink) and common WiMAX infrastructure.
24
25 Note that the parts that will allow interaction with user space are
26 setup at the very end, when the rest is in place, as once that happens,
27 the driver might get user space control requests via netlink or from
28 debugfs that might translate into calls into wimax_dev->op_*().
29
31Kernel Hackers Manual 2.6. November 2011 WIMAX_DEV_ADD(9)