diff options
author | Gabriel L. Somlo | 2014-05-19 16:09:55 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2014-05-21 14:47:50 +0200 |
commit | 0d73394ad93aa12755316b3a90b3193aeeb95f90 (patch) | |
tree | 49638615f5506b68dad6b1a923bf13e2a5d2f257 /include | |
parent | SMBIOS: Update Type 0 struct generator for machines >= 2.1 (diff) | |
download | qemu-0d73394ad93aa12755316b3a90b3193aeeb95f90.tar.gz qemu-0d73394ad93aa12755316b3a90b3193aeeb95f90.tar.xz qemu-0d73394ad93aa12755316b3a90b3193aeeb95f90.zip |
SMBIOS: Fix type 17 field sizes
Fields for configured_clock_speed and various voltage values
introduced in spec v2.7+ should be "word", i.e. 16 bits.
Reported-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Gabriel Somlo <somlo@cmu.edu>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/i386/smbios.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/hw/i386/smbios.h b/include/hw/i386/smbios.h index 5583f60405..a3f4d88bf0 100644 --- a/include/hw/i386/smbios.h +++ b/include/hw/i386/smbios.h @@ -182,10 +182,10 @@ struct smbios_type_17 { uint8_t part_number_str; uint8_t attributes; uint32_t extended_size; - uint32_t configured_clock_speed; - uint32_t minimum_voltage; - uint32_t maximum_voltage; - uint32_t configured_voltage; + uint16_t configured_clock_speed; + uint16_t minimum_voltage; + uint16_t maximum_voltage; + uint16_t configured_voltage; } QEMU_PACKED; /* SMBIOS type 19 - Memory Array Mapped Address (v2.7) */ |