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
Kconfig -rw-r--r-- 438 bytes
Makefile -rw-r--r-- 93 bytes
crypto.c -rw-r--r-- 16.4 KB
fname.c -rw-r--r-- 10.3 KB
fscrypt_private.h -rw-r--r-- 2.1 KB
keyinfo.c -rw-r--r-- 8.6 KB
policy.c -rw-r--r-- 7.0 KB

back to top