diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-11-30 13:25:00 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-12-04 10:11:16 +0100 |
commit | 0d9d74e42beb2154f59cedb0109aed65f0b54fc7 (patch) | |
tree | 498543308ef32067f1bf70e5ed6779a5b0f27c04 /com32/gplinclude | |
parent | dde06e4c981d004fb2227dc8e8a28aa7e099e0ce (diff) | |
download | syslinux-0d9d74e42beb2154f59cedb0109aed65f0b54fc7.tar.gz syslinux-0d9d74e42beb2154f59cedb0109aed65f0b54fc7.tar.xz syslinux-0d9d74e42beb2154f59cedb0109aed65f0b54fc7.zip |
dmi: Switching processor voltage from V to mV
Impact: Changing units
Processor voltage is now millivolts
Diffstat (limited to 'com32/gplinclude')
-rw-r--r-- | com32/gplinclude/dmi/dmi_processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/gplinclude/dmi/dmi_processor.h b/com32/gplinclude/dmi/dmi_processor.h index de2f4e4f..63b8767f 100644 --- a/com32/gplinclude/dmi/dmi_processor.h +++ b/com32/gplinclude/dmi/dmi_processor.h @@ -84,7 +84,7 @@ typedef struct { char family[PROCESSOR_FAMILY_SIZE]; char manufacturer[PROCESSOR_MANUFACTURER_SIZE]; char version[PROCESSOR_VERSION_SIZE]; - float voltage; + uint16_t voltage_mv; uint16_t external_clock; uint16_t max_speed; uint16_t current_speed; |