Skip to content

Commit 7cc7ba2

Browse files
committed
iio: adc: ad4000: 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 59b51ed ("iio: adc: ad4000: Add support for SPI offload") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 7d3fa12 commit 7cc7ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/adc/ad4000.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1260,4 +1260,4 @@ module_spi_driver(ad4000_driver);
12601260
MODULE_AUTHOR("Marcelo Schmitt <marcelo.schmitt@analog.com>");
12611261
MODULE_DESCRIPTION("Analog Devices AD4000 ADC driver");
12621262
MODULE_LICENSE("GPL");
1263-
MODULE_IMPORT_NS("IIO_DMAENGINE_BUFFER");
1263+
MODULE_IMPORT_NS(IIO_DMAENGINE_BUFFER);

0 commit comments

Comments
 (0)