Symbol: ordered_list_data
drivers/platform/x86/hp/hp-bioscfg/bioscfg.h
215
struct ordered_list_data *ordered_list_data;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
101
bioscfg_drv.ordered_list_data = kzalloc_objs(*bioscfg_drv.ordered_list_data,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
103
if (!bioscfg_drv.ordered_list_data) {
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
143
struct ordered_list_data *ordered_list_data = &bioscfg_drv.ordered_list_data[instance_id];
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
179
strscpy(ordered_list_data->current_value, str_value);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
180
replace_char_str(ordered_list_data->current_value, COMMA_SEP, SEMICOLON_SEP);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
183
strscpy(ordered_list_data->common.path, str_value);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
186
ordered_list_data->common.is_readonly = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
189
ordered_list_data->common.display_in_ui = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
192
ordered_list_data->common.requires_physical_presence = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
195
ordered_list_data->common.sequence = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
202
ordered_list_data->common.prerequisites_size = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
21
bioscfg_drv.ordered_list_data[instance_id].current_value);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
215
size = min_t(u32, ordered_list_data->common.prerequisites_size,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
230
strscpy(ordered_list_data->common.prerequisites[reqs], str_value);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
238
ordered_list_data->common.security_level = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
246
ordered_list_data->elements_size = int_value;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
272
strscpy(ordered_list_data->elements[olist_elem], part);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
275
ordered_list_data->elements_size = olist_elem;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
307
struct ordered_list_data *ordered_list_data = &bioscfg_drv.ordered_list_data[instance_id];
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
309
ordered_list_data->attr_name_kobj = attr_name_kobj;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
314
hp_update_attribute_permissions(ordered_list_data->common.is_readonly,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
316
hp_friendly_user_name_update(ordered_list_data->common.path,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
318
ordered_list_data->common.display_name,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
319
sizeof(ordered_list_data->common.display_name));
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
327
struct ordered_list_data *ordered_list_data = &bioscfg_drv.ordered_list_data[instance_id];
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
346
ret = hp_get_string_from_buffer(&buffer_ptr, buffer_size, ordered_list_data->current_value,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
347
sizeof(ordered_list_data->current_value));
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
351
replace_char_str(ordered_list_data->current_value, COMMA_SEP, SEMICOLON_SEP);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
355
&ordered_list_data->common);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
361
&ordered_list_data->elements_size);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
363
if (ordered_list_data->elements_size > MAX_ELEMENTS_SIZE) {
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
366
ordered_list_data->elements_size = MAX_ELEMENTS_SIZE;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
370
for (values = 0; values < ordered_list_data->elements_size; values++) {
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
372
ordered_list_data->elements[values],
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
373
sizeof(ordered_list_data->elements[values]));
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
394
struct ordered_list_data *ordered_list_data = &bioscfg_drv.ordered_list_data[instance_id];
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
397
ordered_list_data->attr_name_kobj = attr_name_kobj;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
405
hp_update_attribute_permissions(ordered_list_data->common.is_readonly,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
407
hp_friendly_user_name_update(ordered_list_data->common.path,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
409
ordered_list_data->common.display_name,
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
410
sizeof(ordered_list_data->common.display_name));
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
427
bioscfg_drv.ordered_list_data[instance_id].attr_name_kobj;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
435
kfree(bioscfg_drv.ordered_list_data);
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
436
bioscfg_drv.ordered_list_data = NULL;
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
58
struct ordered_list_data *ordered_list_data = &bioscfg_drv.ordered_list_data[instance];
drivers/platform/x86/hp/hp-bioscfg/order-list-attributes.c
60
strscpy(ordered_list_data->current_value, attr_value);