diff options
author | Luis Henriques <luis@igalia.com> | 2025-07-28 16:08:29 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-08-10 21:09:27 +0100 |
commit | 886f42ce96e7ce80545704e7168a9c6b60cd6c03 (patch) | |
tree | a7541dd24006b098c1eb671b78a69a788be9e7ac | |
parent | 8f5ae30d69d7543eee0d70083daf4de8fe15d585 (diff) |
regmap: mmio: Add missing MODULE_DESCRIPTION()
There were already several commits to add module descriptions to regmap
modules. But this one was still missing:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/base/regmap/regmap-mmio.o
Signed-off-by: Luis Henriques <luis@igalia.com>
Link: https://patch.msgid.link/20250728150829.11890-1-luis@igalia.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/base/regmap/regmap-mmio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/regmap/regmap-mmio.c b/drivers/base/regmap/regmap-mmio.c index 99d7fd85ca7d..29e5f3175301 100644 --- a/drivers/base/regmap/regmap-mmio.c +++ b/drivers/base/regmap/regmap-mmio.c @@ -609,4 +609,5 @@ void regmap_mmio_detach_clk(struct regmap *map) } EXPORT_SYMBOL_GPL(regmap_mmio_detach_clk); +MODULE_DESCRIPTION("regmap MMIO Module"); MODULE_LICENSE("GPL v2"); |