]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
net: irda: pxaficp_ir: use sched_clock() for time management
authorRobert Jarzmik <robert.jarzmik@free.fr>
Sat, 26 Sep 2015 18:49:18 +0000 (20:49 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Sep 2015 05:32:48 +0000 (22:32 -0700)
commitbe01891e4606bc6aaa2b12fbade1aca8eb467a16
treea5d5cae394b95b1ac1782fa61d43df24f073764e
parent5b40f709a1b3100a1a9dbd824303c68757f2e25e
net: irda: pxaficp_ir: use sched_clock() for time management

Instead of using directly the OS timer through direct register access,
use the standard sched_clock(), which will end up in OSCR reading
anyway.

This is a first step for direct access register removal and machine
specific code removal from this driver.

This commit changes the behavior, as previously the minimum turnaround
time was counted in 76ns steps, while with this patch it is counted in
microsecond steps. The strictly equal formula would have been :
    while ((sched_clock() - si->last_clk) * 76 < mtt)

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/irda/pxaficp_ir.c