Commit a9c0ac7e authored by Maximilian Attems's avatar Maximilian Attems Committed by Linus Torvalds

[PATCH] radio/radio-sf16fmr2: replace schedule_timeout() with msleep()

Signed-off-by: default avatarNishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: default avatarMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3cc5bf77
......@@ -55,19 +55,6 @@ static int radio_nr = -1;
#define RSF16_MINFREQ 87*16000
#define RSF16_MAXFREQ 108*16000
/* from radio-aimslab */
static void sleep_delay(unsigned long n)
{
unsigned d=n/(1000000U/HZ);
if (!d)
udelay(n);
else
{
set_current_state(TASK_UNINTERRUPTIBLE);
schedule_timeout(d);
}
}
static inline void wait(int n,int port)
{
for (;n;--n) inb(port);
......@@ -153,7 +140,7 @@ static int fmr2_setfreq(struct fmr2_device *dev)
fmr2_unmute(port);
/* wait 0.11 sec */
sleep_delay(110000LU);
msleep(110);
/* NOTE if mute this stop radio
you must set freq on unmute */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment