diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2024-04-14 17:48:59 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-04-15 03:17:25 +0200 |
commit | 770e3da3fe7ee7ffca745b7ac300ce39fe40f465 (patch) | |
tree | a28967f4c8781be29bacda8168ce227487411905 | |
parent | MAINTAINERS: adjust file entry in TEXAS INSTRUMENTS AUDIO (ASoC/HDA) DRIVERS (diff) | |
download | linux-770e3da3fe7ee7ffca745b7ac300ce39fe40f465.tar.xz linux-770e3da3fe7ee7ffca745b7ac300ce39fe40f465.zip |
spi: altera: Drop unneeded MODULE_ALIAS
The ID table already has respective entry and MODULE_DEVICE_TABLE and
creates proper alias for platform driver. Having another MODULE_ALIAS
causes the alias to be duplicated.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20240414154859.126931-1-krzk@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-altera-platform.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-altera-platform.c b/drivers/spi/spi-altera-platform.c index 72e7a0f21793..585393802e9f 100644 --- a/drivers/spi/spi-altera-platform.c +++ b/drivers/spi/spi-altera-platform.c @@ -169,4 +169,3 @@ module_platform_driver(altera_spi_driver); MODULE_DESCRIPTION("Altera SPI driver"); MODULE_AUTHOR("Thomas Chou <thomas@wytron.com.tw>"); MODULE_LICENSE("GPL"); -MODULE_ALIAS("platform:" DRV_NAME); |