commit | 9e204d885a6d0ae3696284bacd86e2b94dd936c8 | [log] [tgz] |
---|---|---|
author | Felipe Balbi <balbi@ti.com> | Fri Feb 27 19:02:41 2015 -0600 |
committer | Felipe Balbi <balbi@ti.com> | Tue Mar 10 15:33:32 2015 -0500 |
tree | c60eb34d7b9648f7547e7774e6ac9d81a62f47e6 | |
parent | 043f5b75dd2b1fbd45d5f367d50e5ae5b4afa955 [diff] |
usb: musb: dsps: use msecs_to_jiffies instead when polling, we were using n * HZ (where n is an integer in seconds), however HZ isn't always correct if we're using cpufreq. A better way is to use msecs_to_jiffies(n) (where n is now an integer in miliseconds). while at that, also rename poll_seconds to poll_timeout and change its type to unsigned int. Signed-off-by: Felipe Balbi <balbi@ti.com>