qcacmn: Add WIN Driver compilation fix
Fix compilation errors for WIN driver. Change-Id: I3c13f3d75a929e418118863d0976016c81436504 CRs-Fixed: 1012511
This commit is contained in:

committed by
Akash Patel

parent
89298eaabc
commit
e5dc6df496
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (q) 2013-2016 The Linux Foundation. All rights reserved.
|
* Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
|
||||||
*
|
*
|
||||||
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
||||||
*
|
*
|
||||||
@@ -96,11 +96,13 @@ typedef struct _os_mesg_t {
|
|||||||
/**
|
/**
|
||||||
* struct qdf_bus_context - Bus to hal context handoff
|
* struct qdf_bus_context - Bus to hal context handoff
|
||||||
* @bc_tag: bus context tag
|
* @bc_tag: bus context tag
|
||||||
|
* @cal_in_flash: calibration data stored in flash
|
||||||
* @bc_handle: bus context handle
|
* @bc_handle: bus context handle
|
||||||
* @bc_bustype: bus type
|
* @bc_bustype: bus type
|
||||||
*/
|
*/
|
||||||
typedef struct qdf_bus_context {
|
typedef struct qdf_bus_context {
|
||||||
int bc_tag;
|
void *bc_tag;
|
||||||
|
int cal_in_flash;
|
||||||
char *bc_handle;
|
char *bc_handle;
|
||||||
enum qdf_bus_type bc_bustype;
|
enum qdf_bus_type bc_bustype;
|
||||||
} QDF_BUS_CONTEXT;
|
} QDF_BUS_CONTEXT;
|
||||||
@@ -127,6 +129,7 @@ typedef void (*os_mesg_handler_t)(void *ctx, uint16_t mesg_type,
|
|||||||
* @handler: message handler
|
* @handler: message handler
|
||||||
* @ctx: pointer to context
|
* @ctx: pointer to context
|
||||||
* @is_synchronous: bit to save synchronous status
|
* @is_synchronous: bit to save synchronous status
|
||||||
|
* @del_progress: delete in progress
|
||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
osdev_t dev_handle;
|
osdev_t dev_handle;
|
||||||
@@ -145,11 +148,13 @@ typedef struct {
|
|||||||
os_mesg_handler_t handler;
|
os_mesg_handler_t handler;
|
||||||
void *ctx;
|
void *ctx;
|
||||||
uint8_t is_synchronous:1;
|
uint8_t is_synchronous:1;
|
||||||
|
uint8_t del_progress;
|
||||||
} os_mesg_queue_t;
|
} os_mesg_queue_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct _NIC_DEV - Definition of OS-dependent device structure.
|
* struct _NIC_DEV - Definition of OS-dependent device structure.
|
||||||
* It'll be opaque to the actual ATH layer.
|
* It'll be opaque to the actual ATH layer.
|
||||||
|
* @qdf_dev: qdf device
|
||||||
* @bdev: bus device handle
|
* @bdev: bus device handle
|
||||||
* @netdev: net device handle (wifi%d)
|
* @netdev: net device handle (wifi%d)
|
||||||
* @intr_tq: tasklet
|
* @intr_tq: tasklet
|
||||||
@@ -157,9 +162,17 @@ typedef struct {
|
|||||||
* @bc: hal bus context
|
* @bc: hal bus context
|
||||||
* @device: generic device
|
* @device: generic device
|
||||||
* @event_queue: instance to wait queue
|
* @event_queue: instance to wait queue
|
||||||
* @is_device_asleep: keep device status, sleep or awake
|
* @wmi_timeout: init timeout
|
||||||
|
* @wmi_timeout_unintr: init timeout (uninterrupted wait)
|
||||||
|
* @is_device_asleep: keep device status, sleep or awakei
|
||||||
|
* @acfg_event_list: event list
|
||||||
|
* @acfg_event_queue_lock: queue lock
|
||||||
|
* @acfg_event_os_work: schedule or create work
|
||||||
|
* @acfg_netlink_wq_init_done: Work queue ready
|
||||||
|
* @osdev_acfg_handle: acfg handle
|
||||||
*/
|
*/
|
||||||
struct _NIC_DEV {
|
struct _NIC_DEV {
|
||||||
|
qdf_device_t qdf_dev;
|
||||||
void *bdev;
|
void *bdev;
|
||||||
struct net_device *netdev;
|
struct net_device *netdev;
|
||||||
qdf_bh_t intr_tq;
|
qdf_bh_t intr_tq;
|
||||||
@@ -168,6 +181,8 @@ struct _NIC_DEV {
|
|||||||
#ifdef ATH_PERF_PWR_OFFLOAD
|
#ifdef ATH_PERF_PWR_OFFLOAD
|
||||||
struct device *device;
|
struct device *device;
|
||||||
wait_queue_head_t event_queue;
|
wait_queue_head_t event_queue;
|
||||||
|
unsigned int wmi_timeout;
|
||||||
|
unsigned int wmi_timeout_unintr;
|
||||||
#endif /* PERF_PWR_OFFLOAD */
|
#endif /* PERF_PWR_OFFLOAD */
|
||||||
#if OS_SUPPORT_ASYNC_Q
|
#if OS_SUPPORT_ASYNC_Q
|
||||||
os_mesg_queue_t async_q;
|
os_mesg_queue_t async_q;
|
||||||
@@ -175,6 +190,17 @@ struct _NIC_DEV {
|
|||||||
#ifdef ATH_BUS_PM
|
#ifdef ATH_BUS_PM
|
||||||
uint8_t is_device_asleep;
|
uint8_t is_device_asleep;
|
||||||
#endif /* ATH_BUS_PM */
|
#endif /* ATH_BUS_PM */
|
||||||
|
qdf_nbuf_queue_t acfg_event_list;
|
||||||
|
qdf_spinlock_t acfg_event_queue_lock;
|
||||||
|
qdf_work_t acfg_event_os_work;
|
||||||
|
uint8_t acfg_netlink_wq_init_done;
|
||||||
|
|
||||||
|
#ifdef UMAC_SUPPORT_ACFG
|
||||||
|
#ifdef ACFG_NETLINK_TX
|
||||||
|
void *osdev_acfg_handle;
|
||||||
|
#endif /* ACFG_NETLINK_TX */
|
||||||
|
#endif /* UMAC_SUPPORT_ACFG */
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define __QDF_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer, lenp, ppos) \
|
#define __QDF_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer, lenp, ppos) \
|
||||||
|
Reference in New Issue
Block a user