diff options
author | David Hildenbrand <dahi@linux.vnet.ibm.com> | 2015-05-06 10:17:51 +0300 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-05-13 10:58:18 +0300 |
commit | 78335a30e0ea2ac79db5a9915fdf6edd9e8ded9b (patch) | |
tree | 09d2cadffa3de537b8295902a3918b5a40c07054 /arch/s390/include/asm/sclp.h | |
parent | 3a9f3fe69eab40d9de948230a6789bd7ea68d5e9 (diff) | |
download | linux-78335a30e0ea2ac79db5a9915fdf6edd9e8ded9b.tar.xz |
s390/sclp: move sclp_facilities into "struct sclp"
Let's also move the facilities into the sclp struct, so we can avoid
another separate external variable.
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/sclp.h')
-rw-r--r-- | arch/s390/include/asm/sclp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/include/asm/sclp.h b/arch/s390/include/asm/sclp.h index 6b00faa7e1ad..c891f41b2753 100644 --- a/arch/s390/include/asm/sclp.h +++ b/arch/s390/include/asm/sclp.h @@ -62,6 +62,7 @@ struct sclp_info { unsigned long long hamax; unsigned int max_cpu; unsigned long hsa_size; + unsigned long long facilities; }; extern struct sclp_info sclp; |