Lines Matching refs:new_custom

418 	struct ltc2983_custom_sensor *new_custom;  in __ltc2983_custom_sensor_new()  local
438 new_custom = devm_kzalloc(dev, sizeof(*new_custom), GFP_KERNEL); in __ltc2983_custom_sensor_new()
439 if (!new_custom) in __ltc2983_custom_sensor_new()
442 new_custom->size = n_entries * n_size; in __ltc2983_custom_sensor_new()
444 if (is_steinhart && new_custom->size != LTC2983_CUSTOM_STEINHART_SIZE) { in __ltc2983_custom_sensor_new()
445 dev_err(dev, "Steinhart sensors size(%zu) must be %u\n", new_custom->size, in __ltc2983_custom_sensor_new()
450 if (st->custom_table_size + new_custom->size > in __ltc2983_custom_sensor_new()
454 st->custom_table_size, new_custom->size); in __ltc2983_custom_sensor_new()
460 new_custom->table = devm_kcalloc(dev, n_entries, sizeof(u32), GFP_KERNEL); in __ltc2983_custom_sensor_new()
462 new_custom->table = devm_kcalloc(dev, n_entries, sizeof(u64), GFP_KERNEL); in __ltc2983_custom_sensor_new()
463 if (!new_custom->table) in __ltc2983_custom_sensor_new()
474 ret = fwnode_property_read_u32_array(fn, propname, new_custom->table, n_entries); in __ltc2983_custom_sensor_new()
478 cpu_to_be32_array(new_custom->table, new_custom->table, n_entries); in __ltc2983_custom_sensor_new()
480 ret = fwnode_property_read_u64_array(fn, propname, new_custom->table, n_entries); in __ltc2983_custom_sensor_new()
485 u64 temp = ((u64 *)new_custom->table)[index]; in __ltc2983_custom_sensor_new()
494 put_unaligned_be24(temp, new_custom->table + index * 3); in __ltc2983_custom_sensor_new()
498 new_custom->is_steinhart = is_steinhart; in __ltc2983_custom_sensor_new()
511 new_custom->offset = st->custom_table_size / in __ltc2983_custom_sensor_new()
513 st->custom_table_size += new_custom->size; in __ltc2983_custom_sensor_new()
516 new_custom->offset = -1; in __ltc2983_custom_sensor_new()
519 return new_custom; in __ltc2983_custom_sensor_new()