Skip to content

Commit 98e437f

Browse files
committed
Merge tag 'scmi-fix-5.17' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into arm/fixes
Arm SCMI fix for v5.17 A simple fix to remove space in the MODULE_ALIAS name used in the SCMI driver as userspace expect no spaces in these names. * tag 'scmi-fix-5.17' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux: firmware: arm_scmi: Remove space in MODULE_ALIAS name Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnd Bergmann <[email protected]>
2 parents f159f29 + 1ba603f commit 98e437f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/firmware/arm_scmi/driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2112,7 +2112,7 @@ static void __exit scmi_driver_exit(void)
21122112
}
21132113
module_exit(scmi_driver_exit);
21142114

2115-
MODULE_ALIAS("platform: arm-scmi");
2115+
MODULE_ALIAS("platform:arm-scmi");
21162116
MODULE_AUTHOR("Sudeep Holla <[email protected]>");
21172117
MODULE_DESCRIPTION("ARM SCMI protocol driver");
21182118
MODULE_LICENSE("GPL v2");

0 commit comments

Comments
 (0)