[no subject]

2011-08-06 Thread Bar Yasser
I am Bar Yasser, I have a very important Business matters i will like to discuss with you.If this your Email is valid Contact me through my personal email:rawashdeh.assera...@w.cn Thank you Mr. Yasser Al ___ devel mailing list devel@linuxdriverproject

Re: Broadcom 4331 wireless device

2011-08-06 Thread Sergey Kishchenko
Henry Ptasinski broadcom.com> writes: > > On Thu, Aug 04, 2011 at 08:43:27AM -0700, Daniel Sell wrote: > > Any news on this? > > > > Thanks, > > Dan > > Sorry, not yet. Still working on getting out of staging. Hopefull that will > happen very soon ... > > - Henry > I am interested in this

[patch] rtl8712: don't just return -EFAULT in wpa_supplicant_ioctl()

2011-08-06 Thread Dan Carpenter
There were some curly braces missing so the original code in wpa_supplicant_ioctl() pretty much always returned -EFAULT without doing anything. Signed-off-by: Dan Carpenter diff --git a/drivers/staging/rtl8712/rtl871x_ioctl_linux.c b/drivers/staging/rtl8712/rtl871x_ioctl_linux.c index 40e6b5c..

[PATCH] staging: brcm80211: use kzalloc()

2011-08-06 Thread Thomas Meyer
From: Thomas Meyer Use kzalloc rather than kmalloc followed by memset with 0 This considers some simple cases that are common and easy to validate Note in particular that there are no ...s in the rule, so all of the matched code has to be contiguous The semantic patch that makes this outp