1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-11-25 14:44:09 +00:00

fix for missing signal

This commit is contained in:
kimocoder 2019-03-29 01:15:13 +01:00
parent 6b0c3fae30
commit 9309154d5c
2 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,6 @@
#include "phydm_precomp.h"
#define READ_AND_CONFIG_MP(ic, txt) (odm_read_and_config_mp_##ic##txt(p_dm))
#define READ_AND_CONFIG_TC(ic, txt) (odm_read_and_config_tc_##ic##txt(p_dm))
#define READ_AND_CONFIG READ_AND_CONFIG_MP

View File

@ -15,6 +15,10 @@
#ifndef __OSDEP_SERVICE_H_
#define __OSDEP_SERVICE_H_
#include <linux/version.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
#include <linux/sched/signal.h>
#endif
#define _FAIL 0
#define _SUCCESS 1