Skip to content

Commit cb10455

Browse files
committed
iio: adc: ad7380: 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 bbeaec8 ("iio: ad7380: add support for SPI offload") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 3bca779 commit cb10455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/adc/ad7380.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2174,4 +2174,4 @@ module_spi_driver(ad7380_driver);
21742174
MODULE_AUTHOR("Stefan Popa <stefan.popa@analog.com>");
21752175
MODULE_DESCRIPTION("Analog Devices AD738x ADC driver");
21762176
MODULE_LICENSE("GPL");
2177-
MODULE_IMPORT_NS("IIO_DMAENGINE_BUFFER");
2177+
MODULE_IMPORT_NS(IIO_DMAENGINE_BUFFER);

0 commit comments

Comments
 (0)