Lines Matching refs:new_custom
388 struct ltc2983_custom_sensor *new_custom; in __ltc2983_custom_sensor_new() local
405 new_custom = devm_kzalloc(dev, sizeof(*new_custom), GFP_KERNEL); in __ltc2983_custom_sensor_new()
406 if (!new_custom) in __ltc2983_custom_sensor_new()
409 new_custom->size = n_entries * n_size; in __ltc2983_custom_sensor_new()
411 if (is_steinhart && new_custom->size != LTC2983_CUSTOM_STEINHART_SIZE) { in __ltc2983_custom_sensor_new()
413 new_custom->size); in __ltc2983_custom_sensor_new()
417 if (st->custom_table_size + new_custom->size > in __ltc2983_custom_sensor_new()
421 st->custom_table_size, new_custom->size); in __ltc2983_custom_sensor_new()
426 new_custom->table = devm_kzalloc(dev, new_custom->size, GFP_KERNEL); in __ltc2983_custom_sensor_new()
427 if (!new_custom->table) in __ltc2983_custom_sensor_new()
456 new_custom->table[tbl++] = in __ltc2983_custom_sensor_new()
460 new_custom->is_steinhart = is_steinhart; in __ltc2983_custom_sensor_new()
473 new_custom->offset = st->custom_table_size / in __ltc2983_custom_sensor_new()
475 st->custom_table_size += new_custom->size; in __ltc2983_custom_sensor_new()
478 new_custom->offset = -1; in __ltc2983_custom_sensor_new()
481 return new_custom; in __ltc2983_custom_sensor_new()