mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-03-15 08:40:47 +00:00
11 lines
283 B
C
Executable File
11 lines
283 B
C
Executable File
#ifndef __BACKPORT_LINUX_WAIT_H
|
|
#define __BACKPORT_LINUX_WAIT_H
|
|
#include_next <linux/wait.h>
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
|
|
#define wake_up_interruptible_poll(x, m) \
|
|
__wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m))
|
|
#endif
|
|
|
|
#endif /* __BACKPORT_LINUX_WAIT_H */
|