1 /*
2 * Copyright (c) 2020 The Linux Foundation. All rights reserved.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all
7 * copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #ifndef _WLAN_HDD_SYSFS_SWLM_H_
20 #define _WLAN_HDD_SYSFS_SWLM_H_
21
22 #ifdef WLAN_DP_FEATURE_SW_LATENCY_MGR
23 /**
24 * hdd_sysfs_dp_swlm_create() - Create SWLM specific sysfs entry
25 * @driver_kobject: Driver kobject
26 *
27 * Returns: none
28 */
29 int hdd_sysfs_dp_swlm_create(struct kobject *driver_kobject);
30
31 /**
32 * hdd_sysfs_dp_swlm_destroy() - Destroy SWLM specific sysfs entry
33 * @driver_kobject: Driver kobject
34 *
35 * Returns: none
36 */
37 void hdd_sysfs_dp_swlm_destroy(struct kobject *driver_kobject);
38 #else
hdd_sysfs_dp_swlm_create(struct kobject * driver_kobject)39 static inline int hdd_sysfs_dp_swlm_create(struct kobject *driver_kobject)
40 {
41 return 0;
42 }
43
hdd_sysfs_dp_swlm_destroy(struct kobject * driver_kobject)44 static inline void hdd_sysfs_dp_swlm_destroy(struct kobject *driver_kobject)
45 {
46 }
47 #endif /* WLAN_DP_FEATURE_SW_LATENCY_MGR */
48
49 #endif
50