Skip to content

Commit 2989b7a

Browse files
committed
iio: dac: ad5791: 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 192b669 ("iio: dac: ad5791: Add offload support") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 0ff23a6 commit 2989b7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/dac/ad5791.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,4 +614,4 @@ module_spi_driver(ad5791_driver);
614614
MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
615615
MODULE_DESCRIPTION("Analog Devices AD5760/AD5780/AD5781/AD5790/AD5791 DAC");
616616
MODULE_LICENSE("GPL v2");
617-
MODULE_IMPORT_NS("IIO_DMAENGINE_BUFFER");
617+
MODULE_IMPORT_NS(IIO_DMAENGINE_BUFFER);

0 commit comments

Comments
 (0)