diff options
| author | Krzysztof Kozlowski <[email protected]> | 2021-09-16 19:05:22 +0200 |
|---|---|---|
| committer | Herbert Xu <[email protected]> | 2021-09-24 16:03:04 +0800 |
| commit | 7c5329697ed4e0e1bf9a4e4fc9f0053f2f58935d (patch) | |
| tree | fc2d4b9bdfc0c2aa275e428b80289e83f30bbc48 | |
| parent | ca605f97dae4bf070b7c584aec23c1c922e4d823 (diff) | |
crypto: marvell/cesa - drop unneeded MODULE_ALIAS
The MODULE_DEVICE_TABLE already creates proper alias for platform
driver. Having another MODULE_ALIAS causes the alias to be duplicated.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
| -rw-r--r-- | drivers/crypto/marvell/cesa/cesa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/crypto/marvell/cesa/cesa.c b/drivers/crypto/marvell/cesa/cesa.c index f14aac532f53..5cd332880653 100644 --- a/drivers/crypto/marvell/cesa/cesa.c +++ b/drivers/crypto/marvell/cesa/cesa.c @@ -615,7 +615,6 @@ static struct platform_driver marvell_cesa = { }; module_platform_driver(marvell_cesa); -MODULE_ALIAS("platform:mv_crypto"); MODULE_AUTHOR("Boris Brezillon <[email protected]>"); MODULE_AUTHOR("Arnaud Ebalard <[email protected]>"); MODULE_DESCRIPTION("Support for Marvell's cryptographic engine"); |