|
@@ -164,10 +164,32 @@ static inline int qdf_status_to_os_return(QDF_STATUS status)
|
|
|
#define qdf_wait_queue_interruptible(wait_queue, condition) \
|
|
|
__qdf_wait_queue_interruptible(wait_queue, condition)
|
|
|
|
|
|
+/**
|
|
|
+ * qdf_wait_queue_timeout() - wait for specified time on given condition
|
|
|
+ * @wait_queue: wait queue to wait on
|
|
|
+ * @condition: condition to wait on
|
|
|
+ * @timeout: timeout value in jiffies
|
|
|
+ *
|
|
|
+ * Return: 0 if condition becomes false after timeout
|
|
|
+ * 1 or remaining jiffies, if condition becomes true during timeout
|
|
|
+ */
|
|
|
+#define qdf_wait_queue_timeout(wait_queue, condition, timeout) \
|
|
|
+ __qdf_wait_queue_timeout(wait_queue, \
|
|
|
+ condition, timeout)
|
|
|
+
|
|
|
+
|
|
|
#define qdf_init_waitqueue_head(_q) __qdf_init_waitqueue_head(_q)
|
|
|
|
|
|
#define qdf_wake_up_interruptible(_q) __qdf_wake_up_interruptible(_q)
|
|
|
|
|
|
+/**
|
|
|
+ * qdf_wake_up() - wakes up sleeping waitqueue
|
|
|
+ * @wait_queue: wait queue, which needs wake up
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+#define qdf_wake_up(_q) __qdf_wake_up(_q)
|
|
|
+
|
|
|
#define qdf_wake_up_completion(_q) __qdf_wake_up_completion(_q)
|
|
|
|
|
|
/**
|