mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 15:51:46 +00:00
32 lines
801 B
C
32 lines
801 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
/* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
|
||
|
* Copyright (C) 2018-2020 Linaro Ltd.
|
||
|
*/
|
||
|
#ifndef _IPA_MODEM_H_
|
||
|
#define _IPA_MODEM_H_
|
||
|
|
||
|
struct ipa;
|
||
|
struct ipa_endpoint;
|
||
|
struct net_device;
|
||
|
struct sk_buff;
|
||
|
|
||
|
int ipa_modem_start(struct ipa *ipa);
|
||
|
int ipa_modem_stop(struct ipa *ipa);
|
||
|
|
||
|
void ipa_modem_skb_rx(struct net_device *netdev, struct sk_buff *skb);
|
||
|
|
||
|
void ipa_modem_suspend(struct net_device *netdev);
|
||
|
void ipa_modem_resume(struct net_device *netdev);
|
||
|
|
||
|
int ipa_modem_init(struct ipa *ipa, bool modem_init);
|
||
|
void ipa_modem_exit(struct ipa *ipa);
|
||
|
|
||
|
int ipa_modem_config(struct ipa *ipa);
|
||
|
void ipa_modem_deconfig(struct ipa *ipa);
|
||
|
|
||
|
int ipa_modem_setup(struct ipa *ipa);
|
||
|
void ipa_modem_teardown(struct ipa *ipa);
|
||
|
|
||
|
#endif /* _IPA_MODEM_H_ */
|