summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-11-25 15:44:38 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-12-22 09:29:36 +0100
commit2252220d9ebbb66dc3b3c35225ce3632655eb56f (patch)
tree79299682587fce1c00803266e1c08e60371610b4
parent18203fe176439d72829540820514d3d89fc74379 (diff)
downloadlinux-stable-2252220d9ebbb66dc3b3c35225ce3632655eb56f.tar.gz
linux-stable-2252220d9ebbb66dc3b3c35225ce3632655eb56f.tar.bz2
linux-stable-2252220d9ebbb66dc3b3c35225ce3632655eb56f.zip
dmaengine: st_fdma: fix MODULE_ALIAS
[ 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>
-rw-r--r--drivers/dma/st_fdma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/st_fdma.c b/drivers/dma/st_fdma.c
index 67087dbe2f9f..f7393c19a1ba 100644
--- a/drivers/dma/st_fdma.c
+++ b/drivers/dma/st_fdma.c
@@ -873,4 +873,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);