diff options
| author | Sebastian Herbszt <herbszt@gmx.de> | 2008-03-08 22:56:53 +0100 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2008-03-20 16:34:36 -0700 |
| commit | e24088d7308039a4afad734087349410991bf4b2 (patch) | |
| tree | 4c20fca619fcf2bfb797e2a73e6b3efe4db3b0b0 /com32/include | |
| parent | 23b6a5adf17d534fe152c0ea9f5617caee20a7c3 (diff) | |
| download | syslinux-e24088d7308039a4afad734087349410991bf4b2.tar.gz | |
Fixing wrong offsets in dmi
DMI code have some wrong offsets.
This patch fixes this offsets and improve the grammar.
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Diffstat (limited to 'com32/include')
| -rw-r--r-- | com32/include/dmi/dmi_bios.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/com32/include/dmi/dmi_bios.h b/com32/include/dmi/dmi_bios.h index d9be233b..0241f0b2 100644 --- a/com32/include/dmi/dmi_bios.h +++ b/com32/include/dmi/dmi_bios.h @@ -22,7 +22,7 @@ #define BIOS_BIOS_REVISION_SIZE 16 #define BIOS_FIRMWARE_REVISION_SIZE 16 -#define BIOS_CHAR_NB_ELEMENTS 27 +#define BIOS_CHAR_NB_ELEMENTS 28 #define BIOS_CHAR_X1_NB_ELEMENTS 8 #define BIOS_CHAR_X2_NB_ELEMENTS 3 @@ -58,8 +58,8 @@ static const char *bios_charac_strings[]={ "NEC PC-98" /* 31 */ }; -/* this struct have BIOS_CHAR_NB_ELEMENTS */ -/* each bool is associated to the relevant message above */ +/* this struct has BIOS_CHAR_NB_ELEMENTS */ +/* each bool is associated with the relevant message above */ typedef struct { bool bios_characteristics_not_supported; bool isa; @@ -102,8 +102,8 @@ static const char *bios_charac_x1_strings[]={ "Smart battery is supported" /* 7 */ }; -/* this struct have BIOS_CHAR_X1_NB_ELEMENTS */ -/* each bool is associated to the relevant message above */ +/* this struct has BIOS_CHAR_X1_NB_ELEMENTS */ +/* each bool is associated with the relevant message above */ typedef struct { bool acpi; bool usb_legacy; @@ -121,8 +121,8 @@ static const char *bios_charac_x2_strings[]={ "Targeted content distribution is supported" /* 2 */ }; -/* this struct have BIOS_CHAR_X2_NB_ELEMENTS */ -/* each bool is associated to the relevant message above */ +/* this struct has BIOS_CHAR_X2_NB_ELEMENTS */ +/* each bool is associated with the relevant message above */ typedef struct { bool bios_boot_specification; bool bios_network_boot_by_keypress; |
