summaryrefslogtreecommitdiff
path: root/target-s390x
diff options
context:
space:
mode:
authorChristian Borntraeger <borntraeger@de.ibm.com>2015-12-08 09:22:52 +0100
committerCornelia Huck <cornelia.huck@de.ibm.com>2016-01-27 15:34:47 +0100
commit52c6cfb74908060c3d209fa4c9b2a62c3ff76ff2 (patch)
treefaccd40722dc2712f5e0442fd59b349d65836c2b /target-s390x
parent2f2b0c66d950e374379434b88d6d48e8ad538609 (diff)
downloadqemu-52c6cfb74908060c3d209fa4c9b2a62c3ff76ff2.tar.gz
s390x/machine: make addon register fields static
No need to have them as global symbol. Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'target-s390x')
-rw-r--r--target-s390x/machine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target-s390x/machine.c b/target-s390x/machine.c
index b76fb08319..96ad0a9d4f 100644
--- a/target-s390x/machine.c
+++ b/target-s390x/machine.c
@@ -48,7 +48,7 @@ static inline bool fpu_needed(void *opaque)
return true;
}
-const VMStateDescription vmstate_fpu = {
+static const VMStateDescription vmstate_fpu = {
.name = "cpu/fpu",
.version_id = 1,
.minimum_version_id = 1,
@@ -75,7 +75,7 @@ const VMStateDescription vmstate_fpu = {
}
};
-const VMStateDescription vmstate_vregs = {
+static const VMStateDescription vmstate_vregs = {
.name = "cpu/vregs",
.version_id = 1,
.minimum_version_id = 1,