Re: [PATCH] Input: mouse: navpoint - Change msleep to usleep_range for small msecs

2016-11-29 Thread Aniroop Mathur
Dear Mr. Paul Parsons, I am Aniroop Mathur from Samsung R Institute, India. I have submitted one patch as below for review to Linux Open Source. The problem is that we do not have the hardware available with us to test it and we would like to test it before actually applying it. If you have the

Re: [PATCH] Input: mouse: navpoint - Change msleep to usleep_range for small msecs

2016-11-29 Thread Aniroop Mathur
Dear Mr. Paul Parsons, I am Aniroop Mathur from Samsung R Institute, India. I have submitted one patch as below for review to Linux Open Source. The problem is that we do not have the hardware available with us to test it and we would like to test it before actually applying it. If you have the

[PATCH] Input: mouse: navpoint - Change msleep to usleep_range for small msecs

2016-11-28 Thread Aniroop Mathur
msleep(1~20) may not do what the caller intends, and will often sleep longer. (~20 ms actual sleep for any value given in the 1~20ms range) This is not the desired behaviour for many cases like device resume time, device suspend time, device enable time, retry logic, etc. Thus, change msleep to

[PATCH] Input: mouse: navpoint - Change msleep to usleep_range for small msecs

2016-11-28 Thread Aniroop Mathur
msleep(1~20) may not do what the caller intends, and will often sleep longer. (~20 ms actual sleep for any value given in the 1~20ms range) This is not the desired behaviour for many cases like device resume time, device suspend time, device enable time, retry logic, etc. Thus, change msleep to