Hi,

What is your problem with WiFi? Are you using the wext driver? If it has 
to do with scanning, you can try the attached patch.

Cheers,
Sean

mvniekerk wrote:
> There is no patchset for Android from Freescale, but nothing hinders
> you in making your own :-)
> Have a look at this:
> http://groups.google.com/group/android-porting/browse_thread/thread/a9a645a2cf0b086e/596af49ca3cc9260?#596af49ca3cc9260
>
> Rajesh with profile
> http://groups.google.com/groups/profile?enc_user=WqIqbBgAAACJU8J9cjy2qrM3QvbKYbUJtiDKbEn1fjJfYkQTWXi1Vg
> also is busy porting Android to the PDK.
>
> I'm working on our own design thats loosely based on the PDK. I
> would've liked to share my kernel source with you but the CSR
> propriety bits makes it illegal. If you have any questions feel free
> to contact me.
>
> On Mar 2, 9:39 am, Michael Trimarchi <[email protected]>
> wrote:
>   
>> Hi,
>>
>> mvniekerk wrote:
>>     
>>> Any help will be gladly accepted...
>>> Just a few pointers from my side with the Wifi - I hope you're in
>>> Europe / USA / China (or any place where CSR can export their Wifi
>>> source), otherwise you'll have problems with the APM module installed
>>> on it (propriety code)
>>>       
>>> On Mar 1, 4:37 pm, Michael Trimarchi <[email protected]>
>>> wrote:
>>>       
>> Yes I'm Italian and I live in Spain. Where can I download an initial
>> patchset for my board?
>>
>> Michael
>>
>>     
>>>> Hi,
>>>>         
>>>> mvniekerk wrote:
>>>>         
>>>>> There's a whole lot of people that got it working. I got everything
>>>>> working but wifi is the only thing not working nicely
>>>>> On Feb 27, 3:37 pm, nagaraj attimani <[email protected]>
>>>>> wrote:
>>>>>           
>>>>>> You are the first person 2 do :)
>>>>>> On Fri, Feb 27, 2009 at 6:52 PM, Michael Trimarchi <
>>>>>> [email protected]> wrote:
>>>>>>             
>>>>>>> Hi all,
>>>>>>> I will like to have android on imx31pdk. Is there some initial work done
>>>>>>> by other people?
>>>>>>> Michael
>>>>>>>               
>>>>>> --
>>>>>> Best Regards
>>>>>> Nagaraj
>>>>>>             
>>>> Can I help you? I don't like to start again. I'm currently working on
>>>> the freerunner,
>>>> and I would like to move my experinece on pdk.
>>>>         
>>>> Michael
>>>>         
>>     
> >
>   


--~--~---------~--~----~------------~-------~--~----~
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting
-~----------~----~----~----~------~----~------~--~---

diff --git a/driver_wext.c b/driver_wext.c
index e1f949a..8004785 100644
--- a/driver_wext.c
+++ b/driver_wext.c
@@ -1261,9 +1261,9 @@ int wpa_driver_wext_get_scan_results(void *priv,
 			break;
 		case IWEVQUAL:
 			if (ap_num < max_size) {
-				results[ap_num].qual = iwe->u.qual.qual;
-				results[ap_num].noise = iwe->u.qual.noise;
-				results[ap_num].level = iwe->u.qual.level;
+				results[ap_num].qual = (signed char)iwe->u.qual.qual;
+				results[ap_num].noise = (signed char)iwe->u.qual.noise;
+				results[ap_num].level = (signed char)iwe->u.qual.level;
 			}
 			break;
 		case SIOCGIWENCODE:

Reply via email to