98aa67849105800e40eb7aa3a7708b5149d16c1e
[openwrt/staging/neocturne.git] / package / kernel / rtl8812au-ct / patches / 005-kernel-6.1.patch
1 --- a/include/osdep_service_linux.h
2 +++ b/include/osdep_service_linux.h
3 @@ -163,7 +163,11 @@ typedef void* _thread_hdl_;
4 typedef int thread_return;
5 typedef void* thread_context;
6
7 +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,17,0))
8 +#define thread_exit() kthread_complete_and_exit(NULL, 0)
9 +#else
10 #define thread_exit() complete_and_exit(NULL, 0)
11 +#endif
12
13 typedef void timer_hdl_return;
14 typedef void* timer_hdl_context;