Skip to content

Commit 7d3fa12

Browse files
committed
hwmon: (pmbus/lt3074) 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 c66c5bd ("hwmon: (pmbus/lt3074) add support for lt3074") we missed adapting this difference. Signed-off-by: David Lechner <dlechner@baylibre.com>
1 parent 520e844 commit 7d3fa12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/hwmon/pmbus/lt3074.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ module_i2c_driver(lt3074_driver);
119119
MODULE_AUTHOR("Cedric Encarnacion <cedricjustine.encarnacion@analog.com>");
120120
MODULE_DESCRIPTION("PMBus driver for Analog Devices LT3074");
121121
MODULE_LICENSE("GPL");
122-
MODULE_IMPORT_NS("PMBUS");
122+
MODULE_IMPORT_NS(PMBUS);

0 commit comments

Comments
 (0)