summaryrefslogtreecommitdiffstats
path: root/drivers/iio/adc
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/iio/adc')
-rw-r--r--drivers/iio/adc/ina2xx-adc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/iio/adc/ina2xx-adc.c b/drivers/iio/adc/ina2xx-adc.c
index dd4ff08d7b62..4c18c4cc8939 100644
--- a/drivers/iio/adc/ina2xx-adc.c
+++ b/drivers/iio/adc/ina2xx-adc.c
@@ -540,7 +540,8 @@ static int ina2xx_buffer_enable(struct iio_dev *indio_dev)
chip->prev_ns = iio_get_time_ns();
chip->task = kthread_run(ina2xx_capture_thread, (void *)indio_dev,
- "ina2xx-%uus", sampling_us);
+ "%s:%d-%uus", indio_dev->name, indio_dev->id,
+ sampling_us);
return PTR_ERR_OR_ZERO(chip->task);
}