Re: hi

2014-06-29 Thread Mr.Marcus Cooper
Good day to you, Please, I'm not internet server and I don't know if it is quite safe to share this information with you on this portal without anyone else knowing about it. For this reason, I'll not disclose all for now. My Name is Marcus Cooper ,Please i have no intentions of causing you any

[PATCH 1/1] staging: iio: Coding style issues fix.

2014-06-29 Thread Federico Di Pierro
Fix some little style issues in drivers/staging/iio/frequency/ad9832.c . This is my latest task of the eudyptula challenge (third attempt!) Signed-off-by: Federico Di Pierro nierr...@gmail.com --- drivers/staging/iio/frequency/ad9832.c | 14 ++ 1 file changed, 6 insertions(+), 8

Re: [PATCH 1/2] staging: iio: hmc5843: Add all available models to device tree id table.

2014-06-29 Thread Jonathan Cameron
On 27/06/14 21:48, Belisko Marek wrote: PIng? Jonathan do you have any objections to this approach? Can you please pick it? Thx. Sorry, this one dropped through the cracks. Applied to the togreg branch of iio.git along with the documentation patch that goes with it. Jonathan On Tue, Feb 18,

Re: [PATCH 1/1] staging: iio: Coding style issues fix.

2014-06-29 Thread Jonathan Cameron
On 29/06/14 10:41, Federico Di Pierro wrote: Fix some little style issues in drivers/staging/iio/frequency/ad9832.c . This is my latest task of the eudyptula challenge (third attempt!) Signed-off-by: Federico Di Pierro nierr...@gmail.com I'd have preferred more meaty work on this driver, but I

Re: Anybody working on tidspbridge?

2014-06-29 Thread Greg KH
On Fri, Jun 20, 2014 at 07:05:17PM +0300, Kristina Martšenko wrote: On 20/06/14 18:43, Kristina Martšenko wrote: Hi Omar, I'm helping Greg do a bit of cleanup in the staging tree. I noticed that nobody seems to have worked towards moving tidspbridge out of staging in over a year. Are

Re: [PATCH 1/1] staging: media: msi3101: sdr-msi3101.c - replace with time_before_eq()

2014-06-29 Thread Antti Palosaari
Moikka! That is already fixed by someone else and patch is somewhere Mauro or Hans queue. regards Antti On 06/29/2014 08:20 AM, Anil Belur wrote: From: Anil Belur ask...@gmail.com - this fix replaces jiffies interval comparision with safer function to avoid any overflow and wrap around ?

[PATCH 1/5] staging: octeon-usb: drop dequeue tasklet

2014-06-29 Thread Aaro Koskinen
Cancel requests synchronously instead of using the dequeue tasklet. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/staging/octeon-usb/octeon-hcd.c | 38 + 1 file changed, 1 insertion(+), 37 deletions(-) diff --git

[PATCH 2/5] staging: octeon-usb: use usb_hcd_link_urb_to_ep()

2014-06-29 Thread Aaro Koskinen
The driver did not use link_urb_to_ep() / unlink_urb_from_ep(). This caused odd behaviour in some error recovery situations, all requests would start to fail after the first failure. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/staging/octeon-usb/octeon-hcd.c | 18

[PATCH 5/5] staging: octeon-usb: fix endianness bug

2014-06-29 Thread Aaro Koskinen
wHubCharacteristics gets wrong value on big-endian CPUs. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/staging/octeon-usb/octeon-hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/octeon-usb/octeon-hcd.c

[PATCH 4/5] staging: octeon-usb: return transferred bytes only on success

2014-06-29 Thread Aaro Koskinen
Return transferred bytes only when transfer was successful. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/staging/octeon-usb/octeon-hcd.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/staging/octeon-usb/octeon-hcd.c

Re: [PATCH 1/3] staging: cxt1e1: Remove useless OS_phystov() and OS_vtophys()

2014-06-29 Thread Greg KH
On Fri, Jun 27, 2014 at 06:52:26PM +0900, Daeseok Youn wrote: OS_phystov()/OS_vtophys() are replaced with __va()/__pa(). No, you should use virt_to_phys() and phys_to_virt() instead of these internal macros which might not be correct for all architectures. thanks, greg k-h

Re: [PATCH] staging: rtl8188eu: re-use mac_pton() and hex2bin() helpers

2014-06-29 Thread Greg Kroah-Hartman
On Fri, Jun 27, 2014 at 04:53:32PM +0300, Andy Shevchenko wrote: The helper mac_pton() validates and converts MAC address from string format to a number. Originally code uses simple code to do that. With mac_pton() the driver now validates input as well. MEanwhile hex2bin() converts

Re: [PATCH 2/3] staging: cxt1e1: count fragmented packet properly.

2014-06-29 Thread Greg KH
On Fri, Jun 27, 2014 at 06:56:08PM +0900, Daeseok Youn wrote: OS_mem_token_tlen() is same return value as OS_mem_token_len(). That means packet count is always 1. So OS_mem_token_tlen() must be total length of packet and OS_mem_token_len() has a length of fragmented packet. And then it can

Re: [PATCH 1/1] staging: media: msi3101: sdr-msi3101.c - replace with time_before_eq()

2014-06-29 Thread Anil Shashikumar Belur
On Monday 30 June 2014 12:47 AM, Antti Palosaari wrote: Moikka! That is already fixed by someone else and patch is somewhere Mauro or Hans queue. regards Antti Moikka :) Ah no worries - I could not find the changes with the latest updates. Thanks

Re: Anybody working on gdm72xx?

2014-06-29 Thread Ben Chan
On Sat, Jun 28, 2014 at 2:49 AM, Michalis Pappas mpap...@fastmail.fm wrote: Hi Ben, would you be interested to work on this driver together? My reviewing process is a bit slow as this is the first driver I'm going through and I would like to understand how everything works in detail. I was

Re: [PATCH 1/3] staging: cxt1e1: Remove useless OS_phystov() and OS_vtophys()

2014-06-29 Thread DaeSeok Youn
Hi, Greg. 2014-06-30 6:21 GMT+09:00 Greg KH gre...@linuxfoundation.org: On Fri, Jun 27, 2014 at 06:52:26PM +0900, Daeseok Youn wrote: OS_phystov()/OS_vtophys() are replaced with __va()/__pa(). No, you should use virt_to_phys() and phys_to_virt() instead of these internal macros which might

Re: [PATCH 2/3] staging: cxt1e1: count fragmented packet properly.

2014-06-29 Thread DaeSeok Youn
2014-06-30 6:22 GMT+09:00 Greg KH gre...@linuxfoundation.org: On Fri, Jun 27, 2014 at 06:56:08PM +0900, Daeseok Youn wrote: OS_mem_token_tlen() is same return value as OS_mem_token_len(). That means packet count is always 1. So OS_mem_token_tlen() must be total length of packet and