Replace the MSECS() macro with the jiffies_to_msecs() function provided in jiffies.h. The current macro is incorrect because HZ can have Signed-off-by: Tobias Klauser Signed-off-by: Domen Puncer --- kj-domen/drivers/input/joydev.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff -puN drivers/input/joydev.c~jiffies_to_msecs-drivers_input_joydev drivers/input/joydev.c --- kj/drivers/input/joydev.c~jiffies_to_msecs-drivers_input_joydev 2005-04-05 12:57:55.000000000 +0200 +++ kj-domen/drivers/input/joydev.c 2005-04-05 12:57:55.000000000 +0200 @@ -37,8 +37,6 @@ MODULE_LICENSE("GPL"); #define JOYDEV_MINORS 16 #define JOYDEV_BUFFER_SIZE 64 -#define MSECS(t) (1000 * ((t) / HZ) + 1000 * ((t) % HZ) / HZ) - struct joydev { int exist; int open; @@ -117,7 +115,7 @@ static void joydev_event(struct input_ha return; } - event.time = MSECS(jiffies); + event.time = jiffies_to_msecs(jiffies); list_for_each_entry(list, &joydev->list, node) { @@ -245,7 +243,7 @@ static ssize_t joydev_read(struct file * struct js_event event; - event.time = MSECS(jiffies); + event.time = jiffies_to_msecs(jiffies); if (list->startup < joydev->nkey) { event.type = JS_EVENT_BUTTON | JS_EVENT_INIT; _