aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2008-01-24 17:58:37 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-01-24 17:58:37 -0500
commit49914084e797530d9baaf51df9eda77babc98fa8 (patch)
tree46efd201c070e594c6da4bada354eab5e583eb0c /drivers/net/phy
parentfeed9bab7b14b77be8d796bcee95e2343fb82955 (diff)
Linux 2.6.24v2.6.24
Diffstat (limited to 'drivers/net/phy')
0 files changed, 0 insertions, 0 deletions
kwb">struct ppp_channel *, int code); /* Attach a channel to a given PPP unit in specified net. */ extern int ppp_register_net_channel(struct net *, struct ppp_channel *); /* Attach a channel to a given PPP unit. */ extern int ppp_register_channel(struct ppp_channel *); /* Detach a channel from its PPP unit (e.g. on hangup). */ extern void ppp_unregister_channel(struct ppp_channel *); /* Get the channel number for a channel */ extern int ppp_channel_index(struct ppp_channel *); /* Get the unit number associated with a channel, or -1 if none */ extern int ppp_unit_number(struct ppp_channel *); /* Get the device name associated with a channel, or NULL if none */ extern char *ppp_dev_name(struct ppp_channel *); /* * SMP locking notes: * The channel code must ensure that when it calls ppp_unregister_channel, * nothing is executing in any of the procedures above, for that * channel. The generic layer will ensure that nothing is executing * in the start_xmit and ioctl routines for the channel by the time * that ppp_unregister_channel returns. */ #endif /* __KERNEL__ */ #endif