blob: 82427da309bafa51ad521f7d176d15bee26393d3 [file] [log] [blame]
Ravi Joshia063dd92016-05-25 16:43:13 -07001/*
2 * Copyright (c) 2016 The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 * Permission to use, copy, modify, and/or distribute this software for
7 * any purpose with or without fee is hereby granted, provided that the
8 * above copyright notice and this permission notice appear in all
9 * copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
12 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
13 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
14 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
15 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
16 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
17 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
18 * PERFORMANCE OF THIS SOFTWARE.
19 */
20
21/**
22 * DOC: wlan_hdd_nan_datapath.h
23 *
24 * WLAN Host Device Driver nan datapath API specification
25 */
26
27#ifndef __WLAN_HDD_NAN_DATAPATH_H
28#define __WLAN_HDD_NAN_DATAPATH_H
29
Deepak Dhamdhere3385d752016-05-25 20:36:47 -070030struct hdd_context_s;
31
32#ifdef WLAN_FEATURE_NAN_DATAPATH
33void hdd_ndp_print_ini_config(struct hdd_context_s *hdd_ctx);
34#else
35static inline void hdd_ndp_print_ini_config(struct hdd_context_s *hdd_ctx)
36{
37}
38#endif /* WLAN_FEATURE_NAN_DATAPATH */
39
Ravi Joshia063dd92016-05-25 16:43:13 -070040#endif /* __WLAN_HDD_NAN_DATAPATH_H */
41