rrm: use ULL for static values

This commit is contained in:
James Prestwood 2022-03-31 16:16:41 -07:00 committed by Denis Kenzior
parent 5c7f34d66b
commit f59e69c6c4
1 changed files with 2 additions and 2 deletions

View File

@ -46,9 +46,9 @@
#include "linux/nl80211.h" #include "linux/nl80211.h"
/* Limit requests per second */ /* Limit requests per second */
#define MAX_REQUESTS_PER_SEC 2 #define MAX_REQUESTS_PER_SEC 2ULL
/* Microseconds between requests */ /* Microseconds between requests */
#define MIN_MICROS_BETWEEN_REQUESTS (1000000 / MAX_REQUESTS_PER_SEC) #define MIN_MICROS_BETWEEN_REQUESTS (1000000ULL / MAX_REQUESTS_PER_SEC)
/* 802.11-2016 Table 9-90 */ /* 802.11-2016 Table 9-90 */
#define REPORT_DETAIL_NO_FIELDS_OR_ELEMS 0 #define REPORT_DETAIL_NO_FIELDS_OR_ELEMS 0