Re: cw1200: use msecs_to_jiffies for conversion

2015-02-05 Thread Kalle Valo
> This is only an API consolidation to make things more readable. > Instances of HZ / CONST are replaced by appropriate msecs_to_jiffies(). > > Signed-off-by: Nicholas Mc Guire Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line

Re: cw1200: use msecs_to_jiffies for conversion

2015-02-05 Thread Kalle Valo
This is only an API consolidation to make things more readable. Instances of HZ / CONST are replaced by appropriate msecs_to_jiffies(). Signed-off-by: Nicholas Mc Guire hof...@osadl.org Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the

[PATCH] cw1200: use msecs_to_jiffies for conversion

2015-02-03 Thread Nicholas Mc Guire
This is only an API consolidation to make things more readable. Instances of HZ / CONST are replaced by appropriate msecs_to_jiffies(). Signed-off-by: Nicholas Mc Guire --- Converting milliseconds to jiffies by "val * HZ / 1000" or passing HZ / 10 is technically OK but appropriate

[PATCH] cw1200: use msecs_to_jiffies for conversion

2015-02-03 Thread Nicholas Mc Guire
This is only an API consolidation to make things more readable. Instances of HZ / CONST are replaced by appropriate msecs_to_jiffies(). Signed-off-by: Nicholas Mc Guire hof...@osadl.org --- Converting milliseconds to jiffies by val * HZ / 1000 or passing HZ / 10 is technically OK but