mirror of https://gitee.com/openkylin/qemu.git
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>
This commit is contained in:
parent
2f2b0c66d9
commit
52c6cfb749
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue