Revision a5a1d1c2914b5316924c7893eb683a5420ebd3be authored by Thomas Gleixner on 21 December 2016, 19:32:01 UTC, committed by Thomas Gleixner on 25 December 2016, 10:04:12 UTC
There is no point in having an extra type for extra confusion. u64 is
unambiguous.

Conversion was done with the following coccinelle script:

@rem@
@@
-typedef u64 cycle_t;

@fix@
typedef cycle_t;
@@
-cycle_t
+u64

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: John Stultz <john.stultz@linaro.org>
1 parent 7c0f6ba
History
File Mode Size
Makefile -rw-r--r-- 209 bytes
callchain.c -rw-r--r-- 6.1 KB
core.c -rw-r--r-- 252.8 KB
hw_breakpoint.c -rw-r--r-- 15.5 KB
internal.h -rw-r--r-- 5.8 KB
ring_buffer.c -rw-r--r-- 19.8 KB
uprobes.c -rw-r--r-- 49.8 KB

back to top