@@ -147,28 +147,28 @@ static u8 *parse_opt_type(u8 *p, const char *arg)
147
147
Due to the low count of items in there at the moment, it did not seem
148
148
worth the additional code complexity though. */
149
149
static const struct string_keyword opt_string_keyword [] = {
150
- { "bios-vendor" , 0 , 0x04 , NULL , NULL },
151
- { "bios-version" , 0 , 0x05 , NULL , NULL },
152
- { "bios-release-date" , 0 , 0x08 , NULL , NULL },
153
- { "system-manufacturer" , 1 , 0x04 , NULL , NULL },
154
- { "system-product-name" , 1 , 0x05 , NULL , NULL },
155
- { "system-version" , 1 , 0x06 , NULL , NULL },
156
- { "system-serial-number" , 1 , 0x07 , NULL , NULL },
157
- { "system-uuid" , 1 , 0x08 , NULL , dmi_system_uuid },
158
- { "baseboard-manufacturer" , 2 , 0x04 , NULL , NULL },
159
- { "baseboard-product-name" , 2 , 0x05 , NULL , NULL },
160
- { "baseboard-version" , 2 , 0x06 , NULL , NULL },
161
- { "baseboard-serial-number" , 2 , 0x07 , NULL , NULL },
162
- { "baseboard-asset-tag" , 2 , 0x08 , NULL , NULL },
163
- { "chassis-manufacturer" , 3 , 0x04 , NULL , NULL },
164
- { "chassis-type" , 3 , 0x05 , dmi_chassis_type , NULL },
165
- { "chassis-version" , 3 , 0x06 , NULL , NULL },
166
- { "chassis-serial-number" , 3 , 0x07 , NULL , NULL },
167
- { "chassis-asset-tag" , 3 , 0x08 , NULL , NULL },
168
- { "processor-family" , 4 , 0x06 , dmi_processor_family , NULL },
169
- { "processor-manufacturer" , 4 , 0x07 , NULL , NULL },
170
- { "processor-version" , 4 , 0x10 , NULL , NULL },
171
- { "processor-frequency" , 4 , 0x16 , NULL , dmi_processor_frequency },
150
+ { "bios-vendor" , 0 , 0x04 },
151
+ { "bios-version" , 0 , 0x05 },
152
+ { "bios-release-date" , 0 , 0x08 },
153
+ { "system-manufacturer" , 1 , 0x04 },
154
+ { "system-product-name" , 1 , 0x05 },
155
+ { "system-version" , 1 , 0x06 },
156
+ { "system-serial-number" , 1 , 0x07 },
157
+ { "system-uuid" , 1 , 0x08 }, /* dmi_system_uuid() */
158
+ { "baseboard-manufacturer" , 2 , 0x04 },
159
+ { "baseboard-product-name" , 2 , 0x05 },
160
+ { "baseboard-version" , 2 , 0x06 },
161
+ { "baseboard-serial-number" , 2 , 0x07 },
162
+ { "baseboard-asset-tag" , 2 , 0x08 },
163
+ { "chassis-manufacturer" , 3 , 0x04 },
164
+ { "chassis-type" , 3 , 0x05 }, /* dmi_chassis_type() */
165
+ { "chassis-version" , 3 , 0x06 },
166
+ { "chassis-serial-number" , 3 , 0x07 },
167
+ { "chassis-asset-tag" , 3 , 0x08 },
168
+ { "processor-family" , 4 , 0x06 }, /* dmi_processor_family() */
169
+ { "processor-manufacturer" , 4 , 0x07 },
170
+ { "processor-version" , 4 , 0x10 },
171
+ { "processor-frequency" , 4 , 0x16 }, /* dmi_processor_frequency() */
172
172
};
173
173
174
174
static void print_opt_string_list (void )
0 commit comments