Skip to content

Commit 86e8b5e

Browse files
committed
iio: adc: ad4695: fix backported MODULE_IMPORT_NS
Fix compile error due to backported MODULE_IMPORT_NS(). The 6.6 kernel expects the argument to this to not be quoted while newer kernels expect it to be quoted. When we backported commit f09f140 ("iio: adc: ad4695: Add support for SPI offload") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 7cc7ba2 commit 86e8b5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/adc/ad4695.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2026,4 +2026,4 @@ MODULE_AUTHOR("Ramona Gradinariu <ramona.gradinariu@analog.com>");
20262026
MODULE_AUTHOR("David Lechner <dlechner@baylibre.com>");
20272027
MODULE_DESCRIPTION("Analog Devices AD4695 ADC driver");
20282028
MODULE_LICENSE("GPL");
2029-
MODULE_IMPORT_NS("IIO_DMAENGINE_BUFFER");
2029+
MODULE_IMPORT_NS(IIO_DMAENGINE_BUFFER);

0 commit comments

Comments
 (0)