From 8e9475b3468a84b9a89e6cc3c7758f931410c2b1 Mon Sep 17 00:00:00 2001 From: Mahesh A Saptasagar Date: Tue, 18 Nov 2014 18:51:04 +0530 Subject: [PATCH 1/2] wlan: Fix for OSS build compilation issue Do not include "wpa_ctrl.h" in qsap.c file to avoid compilation errors on OSS builds. Change-Id: Ie3afa0bc564a5b2d9c2245b85f4681b83c1d1644 CRs-Fixed: 758764 --- softap/sdk/qsap.c | 1 - 1 file changed, 1 deletion(-) diff --git a/softap/sdk/qsap.c b/softap/sdk/qsap.c index 9606845..38a7c84 100644 --- a/softap/sdk/qsap.c +++ b/softap/sdk/qsap.c @@ -54,7 +54,6 @@ #include "qsap_api.h" #include "qsap.h" -#include "libwpa_client/wpa_ctrl.h" #include From 9b8ed111414ba39aa7ce207c9385545296b67d0b Mon Sep 17 00:00:00 2001 From: Ravi Joshi Date: Wed, 2 Apr 2014 14:52:40 -0700 Subject: [PATCH 2/2] framework: Fix for making SAP sdk code 64 bit compliant Fix for making SAP SDK code 64 bit compliant. The typedefs were incorrect on an LP64 architecture since a long int will be 64-bits. Change-Id: I4c9f5f2fb2b820193fbe03fdf8e2307c281ea014 CRs-Fixed: 640894 --- softap/sdk/qsap_api.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/softap/sdk/qsap_api.h b/softap/sdk/qsap_api.h index 3e7035c..b76919b 100644 --- a/softap/sdk/qsap_api.h +++ b/softap/sdk/qsap_api.h @@ -39,8 +39,8 @@ typedef unsigned char u8; typedef char s8; typedef unsigned short int u16; typedef signed short int s16; -typedef unsigned long int u32; -typedef signed long int s32; +typedef unsigned int u32; +typedef signed int s32; /** Success and error messages */ #define SUCCESS "success"