Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LMC_PROTO_H_ |
| 2 | #define _LMC_PROTO_H_ |
| 3 | |
Krzysztof Hałasa | 64bef76 | 2008-07-02 20:46:21 +0200 | [diff] [blame] | 4 | #include <linux/hdlc.h> |
| 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | void lmc_proto_attach(lmc_softc_t *sc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | int lmc_proto_ioctl(lmc_softc_t *sc, struct ifreq *ifr, int cmd); |
Krzysztof Hałasa | 64bef76 | 2008-07-02 20:46:21 +0200 | [diff] [blame] | 8 | int lmc_proto_open(lmc_softc_t *sc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | void lmc_proto_close(lmc_softc_t *sc); |
Al Viro | 9045840 | 2007-12-22 17:52:52 +0000 | [diff] [blame] | 10 | __be16 lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | void lmc_proto_netif(lmc_softc_t *sc, struct sk_buff *skb); |
Krzysztof Hałasa | 64bef76 | 2008-07-02 20:46:21 +0200 | [diff] [blame] | 12 | |
| 13 | static inline lmc_softc_t* dev_to_sc(struct net_device *dev) |
| 14 | { |
| 15 | return (lmc_softc_t *)dev_to_hdlc(dev)->priv; |
| 16 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #endif |