Commit 93f7c27b authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by Sebastian Reichel

power: reset: zx-reboot: Fix module autoload

If the driver is built as a module, autoload won't work because the module
alias information is not filled. So user-space can't match the registered
device with the corresponding module.

Export the module alias information using the MODULE_DEVICE_TABLE() macro.

Before this patch:

$ modinfo drivers/power/reset/zx-reboot.ko | grep alias
$

After this patch:

$ modinfo drivers/power/reset/zx-reboot.ko | grep alias
alias:          of:N*T*Czte,sysctrlC*
alias:          of:N*T*Czte,sysctrl
Signed-off-by: default avatarJavier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: default avatarSebastian Reichel <sre@kernel.org>
parent 0a27aa9c
...@@ -72,6 +72,7 @@ static const struct of_device_id zx_reboot_of_match[] = { ...@@ -72,6 +72,7 @@ static const struct of_device_id zx_reboot_of_match[] = {
{ .compatible = "zte,sysctrl" }, { .compatible = "zte,sysctrl" },
{} {}
}; };
MODULE_DEVICE_TABLE(of, zx_reboot_of_match);
static struct platform_driver zx_reboot_driver = { static struct platform_driver zx_reboot_driver = {
.probe = zx_reboot_probe, .probe = zx_reboot_probe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment