summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYingying Tang <yintang@codeaurora.org>2017-03-22 17:01:46 +0800
committerYingying Tang <yintang@codeaurora.org>2017-03-22 17:14:03 +0800
commit7314523085aada01c56df1cb302f7c2b71bb5086 (patch)
tree2cfceaa2d3d6cf1baeae2b1dff8f171647b1dc21
parent10b6af7996d72c5bc98e9a432c7a6575054c3157 (diff)
qcacld-3.0: Fix compilation error of unsigned only in ISO C90
Constant value 4294967295 is recognized as an signed integer in ISO C90. Change the definition of the constant value to 4294967295UL to fix compilation error where need a unsigned value as a input parameter. Change-Id: I02f67b6351c53b5e3331ce668059c4c61953a8d3 CRs-Fixed: 2023140
-rw-r--r--core/hdd/inc/wlan_hdd_debugfs_llstat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/inc/wlan_hdd_debugfs_llstat.h b/core/hdd/inc/wlan_hdd_debugfs_llstat.h
index e72bb84ed757..a56fd608c733 100644
--- a/core/hdd/inc/wlan_hdd_debugfs_llstat.h
+++ b/core/hdd/inc/wlan_hdd_debugfs_llstat.h
@@ -36,7 +36,7 @@
#define _WLAN_HDD_DEBUGFS_LLSTAT_H
#define DEBUGFS_LLSTATS_BUF_SIZE 10240
-#define DEBUGFS_LLSTATS_REQID 4294967295
+#define DEBUGFS_LLSTATS_REQID 4294967295UL
#define DEBUGFS_LLSTATS_REQMASK 0x7
#include <wlan_hdd_main.h>