Skip to content

Commit 83f5a62

Browse files
committed
iio: imu: adis16550: 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 bac4368 ("iio: imu: adis16550: add adis16550 support") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 2989b7a commit 83f5a62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/imu/adis16550.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,5 +1154,5 @@ MODULE_AUTHOR("Ramona Gradinariu <ramona.gradinariu@analog.com>");
11541154
MODULE_AUTHOR("Antoniu Miclaus <antoniu.miclaus@analog.com>");
11551155
MODULE_AUTHOR("Robert Budai <robert.budai@analog.com>");
11561156
MODULE_DESCRIPTION("Analog Devices ADIS16550 IMU driver");
1157-
MODULE_IMPORT_NS("IIO_ADISLIB");
1157+
MODULE_IMPORT_NS(IIO_ADISLIB);
11581158
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)