diff options
author | Alyssa Ross <hi@alyssa.is> | 2022-01-04 14:10:28 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-01-06 15:54:54 +0100 |
commit | 556172fabd226ba14b70c1740d0826a4717473dc (patch) | |
tree | 6c02a552ba960325176851a60264e5b2ec2d9c67 /drivers/tty | |
parent | serial: 8250_bcm7271: Fix return error code in case of dma_alloc_coherent() f... (diff) | |
download | linux-556172fabd226ba14b70c1740d0826a4717473dc.tar.xz linux-556172fabd226ba14b70c1740d0826a4717473dc.zip |
serial: liteuart: fix MODULE_ALIAS
modprobe can't handle spaces in aliases.
Fixes: 1da81e5562fa ("drivers/tty/serial: add LiteUART driver")
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Link: https://lore.kernel.org/r/20220104131030.1674733-1-hi@alyssa.is
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/liteuart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/liteuart.c b/drivers/tty/serial/liteuart.c index 2941659e5274..7f74bf7bdcff 100644 --- a/drivers/tty/serial/liteuart.c +++ b/drivers/tty/serial/liteuart.c @@ -436,4 +436,4 @@ module_exit(liteuart_exit); MODULE_AUTHOR("Antmicro <www.antmicro.com>"); MODULE_DESCRIPTION("LiteUART serial driver"); MODULE_LICENSE("GPL v2"); -MODULE_ALIAS("platform: liteuart"); +MODULE_ALIAS("platform:liteuart"); |