mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
63961f544e
The functions ipa_modem_setup() and ipa_modem_teardown() are trivial wrappers that call ipa_qmi_setup() and ipa_qmi_teardown(). Just call the QMI functions directly, and get rid of the wrappers. Improve the documentation of what setting up QMI does. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
28 lines
699 B
C
28 lines
699 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 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);
|
|
|
|
#endif /* _IPA_MODEM_H_ */
|