2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _LMC_PROTO_H_
|
|
|
|
#define _LMC_PROTO_H_
|
|
|
|
|
2008-07-02 18:46:21 +00:00
|
|
|
#include <linux/hdlc.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void lmc_proto_attach(lmc_softc_t *sc);
|
|
|
|
int lmc_proto_ioctl(lmc_softc_t *sc, struct ifreq *ifr, int cmd);
|
2008-07-02 18:46:21 +00:00
|
|
|
int lmc_proto_open(lmc_softc_t *sc);
|
2005-04-16 22:20:36 +00:00
|
|
|
void lmc_proto_close(lmc_softc_t *sc);
|
2007-12-22 17:52:52 +00:00
|
|
|
__be16 lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
void lmc_proto_netif(lmc_softc_t *sc, struct sk_buff *skb);
|
|
|
|
|
2008-07-02 18:46:21 +00:00
|
|
|
static inline lmc_softc_t* dev_to_sc(struct net_device *dev)
|
|
|
|
{
|
|
|
|
return (lmc_softc_t *)dev_to_hdlc(dev)->priv;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-02 18:46:21 +00:00
|
|
|
#endif
|