usb: musb: dsps: use msecs_to_jiffies instead
authorFelipe Balbi <balbi@ti.com>
Sat, 28 Feb 2015 01:02:41 +0000 (19:02 -0600)
committerFelipe Balbi <balbi@ti.com>
Tue, 10 Mar 2015 20:33:32 +0000 (15:33 -0500)
commit9e204d885a6d0ae3696284bacd86e2b94dd936c8
treec60eb34d7b9648f7547e7774e6ac9d81a62f47e6
parent043f5b75dd2b1fbd45d5f367d50e5ae5b4afa955
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>
drivers/usb/musb/musb_dsps.c