diff options
author | Dmitry Osipenko <[email protected]> | 2021-10-20 02:15:24 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <[email protected]> | 2021-10-21 11:18:08 +0200 |
commit | 14b43c20c283de36131da0cb44f3170b9ffa7630 (patch) | |
tree | bb814f7efa3a18a6da7c5268f784f054bf792929 | |
parent | 131dd9a436d8f6dbaf3d9597803765d271b2fc19 (diff) |
memory: tegra20-emc: Add runtime dependency on devfreq governor module
Tegra20 EMC driver uses simple devfreq governor. Add simple devfreq
governor to the list of the Tegra20 EMC driver module softdeps to allow
userspace initramfs tools like dracut to automatically pull the devfreq
module into ramfs image together with the EMC module.
Reported-by: Nicolas Chauvet <[email protected]>
Suggested-by: Nicolas Chauvet <[email protected]>
Signed-off-by: Dmitry Osipenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
-rw-r--r-- | drivers/memory/tegra/tegra20-emc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/memory/tegra/tegra20-emc.c b/drivers/memory/tegra/tegra20-emc.c index 77c5cd52d1a2..497b6edbf3ca 100644 --- a/drivers/memory/tegra/tegra20-emc.c +++ b/drivers/memory/tegra/tegra20-emc.c @@ -1288,4 +1288,5 @@ module_platform_driver(tegra_emc_driver); MODULE_AUTHOR("Dmitry Osipenko <[email protected]>"); MODULE_DESCRIPTION("NVIDIA Tegra20 EMC driver"); +MODULE_SOFTDEP("pre: governor_simpleondemand"); MODULE_LICENSE("GPL v2"); |