diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-10-18 14:51:10 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-10-18 14:51:10 +0000 |
commit | b9d84537bf691f8cfbf68552349c1bea93c4d5b1 (patch) | |
tree | db9e71119d8a358365b5eae78a675640b7ab11a5 /target-i386 | |
parent | cf8741b1f729d64a07ce4997a3da1c6fe322dfc4 (diff) | |
download | qemu-b9d84537bf691f8cfbf68552349c1bea93c4d5b1.tar.gz qemu-b9d84537bf691f8cfbf68552349c1bea93c4d5b1.tar.bz2 qemu-b9d84537bf691f8cfbf68552349c1bea93c4d5b1.zip |
x86: add 'static' to please Sparse
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/machine.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target-i386/machine.c b/target-i386/machine.c index b13eff4941..26d012df9f 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -116,7 +116,7 @@ static void put_fpreg(QEMUFile *f, void *opaque, size_t size) qemu_put_be16s(f, &exp); } -const VMStateInfo vmstate_fpreg = { +static const VMStateInfo vmstate_fpreg = { .name = "fpreg", .get = get_fpreg, .put = put_fpreg, @@ -133,7 +133,7 @@ static int get_fpreg_1_mmx(QEMUFile *f, void *opaque, size_t size) return 0; } -const VMStateInfo vmstate_fpreg_1_mmx = { +static const VMStateInfo vmstate_fpreg_1_mmx = { .name = "fpreg_1_mmx", .get = get_fpreg_1_mmx, .put = put_fpreg_error, @@ -149,7 +149,7 @@ static int get_fpreg_1_no_mmx(QEMUFile *f, void *opaque, size_t size) return 0; } -const VMStateInfo vmstate_fpreg_1_no_mmx = { +static const VMStateInfo vmstate_fpreg_1_no_mmx = { .name = "fpreg_1_no_mmx", .get = get_fpreg_1_no_mmx, .put = put_fpreg_error, @@ -307,7 +307,7 @@ static void put_uint64_as_uint32(QEMUFile *f, void *pv, size_t size) qemu_put_be32(f, *v); } -const VMStateInfo vmstate_hack_uint64_as_uint32 = { +static const VMStateInfo vmstate_hack_uint64_as_uint32 = { .name = "uint64_as_uint32", .get = get_uint64_as_uint32, .put = put_uint64_as_uint32, @@ -387,7 +387,7 @@ static int cpu_post_load(void *opaque, int version_id) return 0; } -const VMStateDescription vmstate_cpu = { +static const VMStateDescription vmstate_cpu = { .name = "cpu", .version_id = CPU_SAVE_VERSION, .minimum_version_id = 3, |