Commit 7df21e71 authored by Maximilian Attems's avatar Maximilian Attems Committed by Linus Torvalds

[PATCH] radio/miropcm20-rds: 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 ea58f8e5
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/miscdevice.h> #include <linux/miscdevice.h>
#include <linux/delay.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include "miropcm20-rds-core.h" #include "miropcm20-rds-core.h"
...@@ -60,8 +61,7 @@ static ssize_t rds_f_read(struct file *file, char __user *buffer, size_t length, ...@@ -60,8 +61,7 @@ static ssize_t rds_f_read(struct file *file, char __user *buffer, size_t length,
char c; char c;
char bits[8]; char bits[8];
current->state=TASK_UNINTERRUPTIBLE; msleep(2000);
schedule_timeout(2*HZ);
aci_rds_cmd(RDS_STATUS, &c, 1); aci_rds_cmd(RDS_STATUS, &c, 1);
print_matrix(&c, bits); print_matrix(&c, bits);
if (copy_to_user(buffer, bits, 8)) if (copy_to_user(buffer, bits, 8))
......
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