summaryrefslogtreecommitdiffstats
path: root/arch/s390/include/asm/idle.h
diff options
context:
space:
mode:
authorHeiko Carstens <hca@linux.ibm.com>2021-02-23 19:52:20 +0100
committerHeiko Carstens <hca@linux.ibm.com>2021-03-08 10:46:27 +0100
commiteba8e1af5a61e61e5d77e1dfe1e8e20735ebc9c6 (patch)
tree4f4435b83f35c925a9c752915b145c322c2d8dc5 /arch/s390/include/asm/idle.h
parenta38fd8748464831584a19438cbb3082b5a2dab15 (diff)
downloadlinux-stable-eba8e1af5a61e61e5d77e1dfe1e8e20735ebc9c6.tar.gz
linux-stable-eba8e1af5a61e61e5d77e1dfe1e8e20735ebc9c6.tar.bz2
linux-stable-eba8e1af5a61e61e5d77e1dfe1e8e20735ebc9c6.zip
s390/time,idle: get rid of unsigned long long
Get rid of unsigned long long, and use unsigned long instead everywhere. The usage of unsigned long long is a leftover from 31 bit kernel support. Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/idle.h')
-rw-r--r--arch/s390/include/asm/idle.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/s390/include/asm/idle.h b/arch/s390/include/asm/idle.h
index b04f6a794cdf..5cea629c548e 100644
--- a/arch/s390/include/asm/idle.h
+++ b/arch/s390/include/asm/idle.h
@@ -14,12 +14,12 @@
struct s390_idle_data {
seqcount_t seqcount;
- unsigned long long idle_count;
- unsigned long long idle_time;
- unsigned long long clock_idle_enter;
- unsigned long long clock_idle_exit;
- unsigned long long timer_idle_enter;
- unsigned long long timer_idle_exit;
+ unsigned long idle_count;
+ unsigned long idle_time;
+ unsigned long clock_idle_enter;
+ unsigned long clock_idle_exit;
+ unsigned long timer_idle_enter;
+ unsigned long timer_idle_exit;
unsigned long mt_cycles_enter[8];
};