Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

iio: dac: stm32-dac: Use correct header(s) instead of string_helpers.h

There is nothing from string_helpers.h used in the driver, correct
the header inclusion block accordingly.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230808164137.66663-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Andy Shevchenko and committed by
Jonathan Cameron
8c337436 de39695d

+2 -1
+2 -1
drivers/iio/dac/stm32-dac.c
··· 11 11 #include <linux/delay.h> 12 12 #include <linux/iio/iio.h> 13 13 #include <linux/kernel.h> 14 + #include <linux/kstrtox.h> 14 15 #include <linux/module.h> 15 16 #include <linux/mod_devicetable.h> 16 17 #include <linux/of.h> 17 18 #include <linux/platform_device.h> 18 19 #include <linux/pm_runtime.h> 19 - #include <linux/string_helpers.h> 20 + #include <linux/string_choices.h> 20 21 21 22 #include "stm32-dac-core.h" 22 23