All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] serial: liteuart: fix MODULE_ALIAS
@ 2022-01-04 13:10 Alyssa Ross
  2022-01-16  8:35 ` Stafford Horne
  0 siblings, 1 reply; 2+ messages in thread
From: Alyssa Ross @ 2022-01-04 13:10 UTC (permalink / raw)
  To: Karol Gugala, Mateusz Holenko, Greg Kroah-Hartman, Jiri Slaby,
	Filip Kokosinski, Stafford Horne
  Cc: Alyssa Ross, open list:SERIAL DRIVERS, open list

modprobe can't handle spaces in aliases.

Fixes: 1da81e5562fa ("drivers/tty/serial: add LiteUART driver")
Signed-off-by: Alyssa Ross <hi@alyssa.is>
---
 drivers/tty/serial/liteuart.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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");

base-commit: c9e6606c7fe92b50a02ce51dda82586ebdf99b48
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] serial: liteuart: fix MODULE_ALIAS
  2022-01-04 13:10 [PATCH] serial: liteuart: fix MODULE_ALIAS Alyssa Ross
@ 2022-01-16  8:35 ` Stafford Horne
  0 siblings, 0 replies; 2+ messages in thread
From: Stafford Horne @ 2022-01-16  8:35 UTC (permalink / raw)
  To: Alyssa Ross
  Cc: Karol Gugala, Mateusz Holenko, Greg Kroah-Hartman, Jiri Slaby,
	Filip Kokosinski, open list:SERIAL DRIVERS, open list

On Tue, Jan 04, 2022 at 01:10:28PM +0000, Alyssa Ross wrote:
> modprobe can't handle spaces in aliases.
> 
> Fixes: 1da81e5562fa ("drivers/tty/serial: add LiteUART driver")
> Signed-off-by: Alyssa Ross <hi@alyssa.is>
> ---
>  drivers/tty/serial/liteuart.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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");

This looks fine to me.

Acked-by: Stafford Horne <shorne@gmail.com>

> base-commit: c9e6606c7fe92b50a02ce51dda82586ebdf99b48
> -- 
> 2.33.0
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-16  8:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04 13:10 [PATCH] serial: liteuart: fix MODULE_ALIAS Alyssa Ross
2022-01-16  8:35 ` Stafford Horne

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.