xref: /linux/drivers/net/wireless/ath/ath12k/wifi7/ahb.h (revision 37a93dd5c49b5fda807fd204edf2547c3493319c)
1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */
2 /*
3  * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
4  * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
5  */
6 #ifndef ATH12K_AHB_WIFI7_H
7 #define ATH12K_AHB_WIFI7_H
8 
9 #ifdef CONFIG_ATH12K_AHB
10 int ath12k_wifi7_ahb_init(void);
11 void ath12k_wifi7_ahb_exit(void);
12 #else
13 static inline int ath12k_wifi7_ahb_init(void)
14 {
15 	return 0;
16 }
17 
18 static inline void ath12k_wifi7_ahb_exit(void) {}
19 #endif
20 #endif /* ATH12K_AHB_WIFI7_H */
21