mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
s390/sclp: Use DECLARE_BITMAP
Use the generic mechanism to declare a bitmap instead of unsigned long. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
7c53fcb39f
commit
b8a43b045e
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ int sclp_cpu_deconfigure(u8 cpu)
|
||||||
static DEFINE_MUTEX(sclp_mem_mutex);
|
static DEFINE_MUTEX(sclp_mem_mutex);
|
||||||
static LIST_HEAD(sclp_mem_list);
|
static LIST_HEAD(sclp_mem_list);
|
||||||
static u8 sclp_max_storage_id;
|
static u8 sclp_max_storage_id;
|
||||||
static unsigned long sclp_storage_ids[256 / BITS_PER_LONG];
|
static DECLARE_BITMAP(sclp_storage_ids, 256);
|
||||||
static int sclp_mem_state_changed;
|
static int sclp_mem_state_changed;
|
||||||
|
|
||||||
struct memory_increment {
|
struct memory_increment {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue