Commit 889235ce authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

firewire: Use ktime_get_ts()



do_posix_clock_monotonic_gettime() is a leftover from the initial
posix timer implementation which maps to ktime_get_ts()

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Acked-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
Link: http://lkml.kernel.org/r/20140611234607.351283464@linutronix.de


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent a9821c74
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1215,7 +1215,7 @@ static int ioctl_get_cycle_timer2(struct client *client, union ioctl_arg *arg)

	switch (a->clk_id) {
	case CLOCK_REALTIME:      getnstimeofday(&ts);	break;
	case CLOCK_MONOTONIC:     do_posix_clock_monotonic_gettime(&ts); break;
	case CLOCK_MONOTONIC:     ktime_get_ts(&ts);	break;
	case CLOCK_MONOTONIC_RAW: getrawmonotonic(&ts);	break;
	default:
		ret = -EINVAL;