Skip to content

Commit 0ff23a6

Browse files
committed
iio: adc: ad7944: 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 cbc986c ("iio: adc: ad7944: add support for SPI offload") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 86e8b5e commit 0ff23a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/adc/ad7944.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,4 +901,4 @@ module_spi_driver(ad7944_driver);
901901
MODULE_AUTHOR("David Lechner <dlechner@baylibre.com>");
902902
MODULE_DESCRIPTION("Analog Devices AD7944 PulSAR ADC family driver");
903903
MODULE_LICENSE("GPL");
904-
MODULE_IMPORT_NS("IIO_DMAENGINE_BUFFER");
904+
MODULE_IMPORT_NS(IIO_DMAENGINE_BUFFER);

0 commit comments

Comments
 (0)