blob: 15fedcc47fefd5fa69079342412aa74b05458b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __MSM_11AD_H__
#define __MSM_11AD_H__
struct device;
struct wil_platform_ops;
struct wil_platform_rops;
/* msm_11ad_dev_init - call when binding to device, during probe()
* @dev: device structure of pci device
* @ops: pointer to operations supported by platform driver
* Will be filled by this function call
* @rops: pointer to callback functions provided by wil device driver.
* the platform driver copies the structure contents to its
* internal storage. May be NULL if device driver does not
* support rops.
* @wil_handle: context for wil device driver, will be provided
* when platform driver invokes any of the callback
* functions in rops. May be NULL if rops is also NULL
*/
void *msm_11ad_dev_init(struct device *dev, struct wil_platform_ops *ops,
const struct wil_platform_rops *rops, void *wil_handle);
/* call on insmod */
int msm_11ad_modinit(void);
/* call on rmmod */
void msm_11ad_modexit(void);
#endif /* __MSM_11AD_H__ */
|