diff options
author | Stefan Weil <sw@weilnetz.de> | 2014-05-02 22:39:12 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-05-07 21:00:43 +0400 |
commit | bfaaad02814b1f4e86eb4ba1978a93a6dccd1e7d (patch) | |
tree | 0d89334a6636e1435a2712a55b2754f3fb8ce819 /hw/s390x | |
parent | f73cdbc6acdb85f5fdb42a75121d0c97e00663ac (diff) | |
download | qemu-bfaaad02814b1f4e86eb4ba1978a93a6dccd1e7d.zip qemu-bfaaad02814b1f4e86eb4ba1978a93a6dccd1e7d.tar.gz qemu-bfaaad02814b1f4e86eb4ba1978a93a6dccd1e7d.tar.bz2 |
hw/s390x: Add missing 'static' attribute
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/s390x')
-rw-r--r-- | hw/s390x/event-facility.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/event-facility.c b/hw/s390x/event-facility.c index 0777a93..2e9e62f 100644 --- a/hw/s390x/event-facility.c +++ b/hw/s390x/event-facility.c @@ -32,7 +32,7 @@ struct SCLPEventFacility { unsigned int receive_mask; }; -SCLPEvent cpu_hotplug; +static SCLPEvent cpu_hotplug; /* return true if any child has event pending set */ static bool event_pending(SCLPEventFacility *ef) |