projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee3701c
)
dmaengine: st_fdma: fix MODULE_ALIAS
author
Alyssa Ross
<hi@alyssa.is>
Thu, 25 Nov 2021 15:44:38 +0000
(15:44 +0000)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 22 Dec 2021 08:32:41 +0000
(09:32 +0100)
[ Upstream commit
822c9f2b833c53fc67e8adf6f63ecc3ea24d502c
]
modprobe can't handle spaces in aliases.
Fixes:
6b4cd727eaf1
("dmaengine: st_fdma: Add STMicroelectronics FDMA engine driver support")
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Link:
https://lore.kernel.org/r/20211125154441.2626214-1-hi@alyssa.is
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/dma/st_fdma.c
patch
|
blob
|
history
diff --git
a/drivers/dma/st_fdma.c
b/drivers/dma/st_fdma.c
index
962b6e0
..
d95c421
100644
(file)
--- a/
drivers/dma/st_fdma.c
+++ b/
drivers/dma/st_fdma.c
@@
-874,4
+874,4
@@
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("STMicroelectronics FDMA engine driver");
MODULE_AUTHOR("Ludovic.barre <Ludovic.barre@st.com>");
MODULE_AUTHOR("Peter Griffin <peter.griffin@linaro.org>");
-MODULE_ALIAS("platform:
" DRIVER_NAME);
+MODULE_ALIAS("platform:" DRIVER_NAME);