0001
0002
0003
0004
0005
0006 #ifndef _IPA_MODEM_H_
0007 #define _IPA_MODEM_H_
0008
0009 struct ipa;
0010 struct net_device;
0011 struct sk_buff;
0012
0013 int ipa_modem_start(struct ipa *ipa);
0014 int ipa_modem_stop(struct ipa *ipa);
0015
0016 void ipa_modem_skb_rx(struct net_device *netdev, struct sk_buff *skb);
0017
0018 void ipa_modem_suspend(struct net_device *netdev);
0019 void ipa_modem_resume(struct net_device *netdev);
0020
0021 int ipa_modem_config(struct ipa *ipa);
0022 void ipa_modem_deconfig(struct ipa *ipa);
0023
0024 #endif