diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2023-01-22 19:13:03 +0100 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2023-01-25 20:51:09 +0100 |
commit | 7a725b770271deba6c288d075abc8dc9d5aa61d0 (patch) | |
tree | 1870a5b0c27058456841d2c7327f4f649d264ca9 /arch/s390/kernel | |
parent | 7cb7636a1ac158c00f9da8f09e333c1ddd881eca (diff) |
s390/cache: change type from unsigned long long to unsigned long
The unsigned long long type is a leftover of the 31 bit area.
Get rid of it.
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r-- | arch/s390/kernel/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/cache.c b/arch/s390/kernel/cache.c index 7ee3651d00ab..56254fa06f99 100644 --- a/arch/s390/kernel/cache.c +++ b/arch/s390/kernel/cache.c @@ -46,7 +46,7 @@ struct cache_info { #define CACHE_MAX_LEVEL 8 union cache_topology { struct cache_info ci[CACHE_MAX_LEVEL]; - unsigned long long raw; + unsigned long raw; }; static const char * const cache_type_string[] = { |