diff options
author | Alex Elder <elder@linaro.org> | 2024-04-17 01:10:18 +0200 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2024-04-18 13:01:05 +0200 |
commit | 884122775e675985c25702c2da8c8150a764a6c8 (patch) | |
tree | a7813e0be1181c1207c7b6d18d87aa90ed41c037 /drivers/net/ipa/ipa_modem.h | |
parent | net: ipa: more include file cleanup (diff) | |
download | linux-884122775e675985c25702c2da8c8150a764a6c8.tar.xz linux-884122775e675985c25702c2da8c8150a764a6c8.zip |
net: ipa: sort all includes
Establish the rule that header files are always included in sorted
(POSIX local) order. Standard and private headers are separated by
a blank line.
Similarly, sort all forward-declarations for structures.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'drivers/net/ipa/ipa_modem.h')
-rw-r--r-- | drivers/net/ipa/ipa_modem.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/ipa/ipa_modem.h b/drivers/net/ipa/ipa_modem.h index d85718db9a57..b1d2c80ed096 100644 --- a/drivers/net/ipa/ipa_modem.h +++ b/drivers/net/ipa/ipa_modem.h @@ -1,15 +1,16 @@ /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved. - * Copyright (C) 2018-2022 Linaro Ltd. + * Copyright (C) 2018-2024 Linaro Ltd. */ #ifndef _IPA_MODEM_H_ #define _IPA_MODEM_H_ -struct ipa; struct net_device; struct sk_buff; +struct ipa; + int ipa_modem_start(struct ipa *ipa); int ipa_modem_stop(struct ipa *ipa); |