diff options
author | Andreas Kemnade <[email protected]> | 2019-12-13 22:48:02 +0100 |
---|---|---|
committer | Wim Van Sebroeck <[email protected]> | 2019-12-30 15:58:29 +0100 |
commit | a76dfb859cd42df6e3d1910659128ffcd2fb6ba2 (patch) | |
tree | d0686152cb5219fd9babe958134faa29355387be | |
parent | 9a6c274ac1c4346f5384f2290caeb42dc674c471 (diff) |
watchdog: rn5t618_wdt: fix module aliases
Platform device aliases were missing so module autoloading
did not work.
Signed-off-by: Andreas Kemnade <[email protected]>
Reviewed-by: Guenter Roeck <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Guenter Roeck <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
-rw-r--r-- | drivers/watchdog/rn5t618_wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/rn5t618_wdt.c b/drivers/watchdog/rn5t618_wdt.c index 234876047431..6e524c8e26a8 100644 --- a/drivers/watchdog/rn5t618_wdt.c +++ b/drivers/watchdog/rn5t618_wdt.c @@ -188,6 +188,7 @@ static struct platform_driver rn5t618_wdt_driver = { module_platform_driver(rn5t618_wdt_driver); +MODULE_ALIAS("platform:rn5t618-wdt"); MODULE_AUTHOR("Beniamino Galvani <[email protected]>"); MODULE_DESCRIPTION("RN5T618 watchdog driver"); MODULE_LICENSE("GPL v2"); |