* [PATCH] [SERIAL] fix driver_name conflicts
@ 2008-05-26 17:23 Anton Vorontsov
2008-05-26 20:02 ` Alan Cox
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Anton Vorontsov @ 2008-05-26 17:23 UTC (permalink / raw)
To: Maciej W. Rozycki, Timur Tabi; +Cc: linux-serial, linux-kernel
Some drivers are using too generic "serial" name for driver_name, this
might cause issues, like this:
Freescale QUICC Engine UART device driver
proc_dir_entry 'serial' already registered
Call Trace:
[cf82de50] [c0007f7c] show_stack+0x4c/0x1ac (unreliable)
[cf82de90] [c00b03fc] proc_register+0xfc/0x1ac
[cf82dec0] [c00b05c8] create_proc_entry+0x60/0xac
[cf82dee0] [c00b23dc] proc_tty_register_driver+0x60/0x98
[cf82def0] [c016dbd8] tty_register_driver+0x1b4/0x228
[cf82df20] [c0184d70] uart_register_driver+0x144/0x194
[cf82df40] [c030a378] ucc_uart_init+0x2c/0x94
[cf82df50] [c02f21a0] kernel_init+0x98/0x27c
[cf82dff0] [c000fa74] kernel_thread+0x44/0x60
^^ The board is using ucc_uart.c and 8250.c, both registered as
"serial".
This patch fixes two drivers that are using "serial" for driver_name and
not "ttyS" for dev_name. Drivers that are using "ttyS" for dev_name, will
conflict anyway, so we don't bother with these.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
---
drivers/serial/sb1250-duart.c | 2 +-
drivers/serial/ucc_uart.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/serial/sb1250-duart.c b/drivers/serial/sb1250-duart.c
index 2d6c08b..f8e1447 100644
--- a/drivers/serial/sb1250-duart.c
+++ b/drivers/serial/sb1250-duart.c
@@ -924,7 +924,7 @@ console_initcall(sbd_serial_console_init);
static struct uart_driver sbd_reg = {
.owner = THIS_MODULE,
- .driver_name = "serial",
+ .driver_name = "sb1250_duart",
.dev_name = "duart",
.major = TTY_MAJOR,
.minor = SB1250_DUART_MINOR_BASE,
diff --git a/drivers/serial/ucc_uart.c b/drivers/serial/ucc_uart.c
index 01917c4..566a8b4 100644
--- a/drivers/serial/ucc_uart.c
+++ b/drivers/serial/ucc_uart.c
@@ -195,7 +195,7 @@ struct uart_qe_port {
static struct uart_driver ucc_uart_driver = {
.owner = THIS_MODULE,
- .driver_name = "serial",
+ .driver_name = "ucc_uart",
.dev_name = "ttyQE",
.major = SERIAL_QE_MAJOR,
.minor = SERIAL_QE_MINOR,
--
1.5.5.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] [SERIAL] fix driver_name conflicts
2008-05-26 17:23 [PATCH] [SERIAL] fix driver_name conflicts Anton Vorontsov
@ 2008-05-26 20:02 ` Alan Cox
2008-05-27 14:43 ` Timur Tabi
2008-05-28 14:15 ` Maciej W. Rozycki
2 siblings, 0 replies; 4+ messages in thread
From: Alan Cox @ 2008-05-26 20:02 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: Maciej W. Rozycki, Timur Tabi, linux-serial, linux-kernel
On Mon, 26 May 2008 21:23:40 +0400
Anton Vorontsov <avorontsov@ru.mvista.com> wrote:
> Some drivers are using too generic "serial" name for driver_name, this
> might cause issues, like this:
>
> Freescale QUICC Engine UART device driver
> proc_dir_entry 'serial' already registered
> Call Trace:
> [cf82de50] [c0007f7c] show_stack+0x4c/0x1ac (unreliable)
> [cf82de90] [c00b03fc] proc_register+0xfc/0x1ac
> [cf82dec0] [c00b05c8] create_proc_entry+0x60/0xac
> [cf82dee0] [c00b23dc] proc_tty_register_driver+0x60/0x98
> [cf82def0] [c016dbd8] tty_register_driver+0x1b4/0x228
> [cf82df20] [c0184d70] uart_register_driver+0x144/0x194
> [cf82df40] [c030a378] ucc_uart_init+0x2c/0x94
> [cf82df50] [c02f21a0] kernel_init+0x98/0x27c
> [cf82dff0] [c000fa74] kernel_thread+0x44/0x60
>
> ^^ The board is using ucc_uart.c and 8250.c, both registered as
> "serial".
>
> This patch fixes two drivers that are using "serial" for driver_name and
> not "ttyS" for dev_name. Drivers that are using "ttyS" for dev_name, will
> conflict anyway, so we don't bother with these.
Acked-by: Alan Cox <alan@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] [SERIAL] fix driver_name conflicts
2008-05-26 17:23 [PATCH] [SERIAL] fix driver_name conflicts Anton Vorontsov
2008-05-26 20:02 ` Alan Cox
@ 2008-05-27 14:43 ` Timur Tabi
2008-05-28 14:15 ` Maciej W. Rozycki
2 siblings, 0 replies; 4+ messages in thread
From: Timur Tabi @ 2008-05-27 14:43 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: Maciej W. Rozycki, linux-serial, linux-kernel
Anton Vorontsov wrote:
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Acked-By: Timur Tabi <timur@freescale.com>
--
Timur Tabi
Linux kernel developer at Freescale
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] [SERIAL] fix driver_name conflicts
2008-05-26 17:23 [PATCH] [SERIAL] fix driver_name conflicts Anton Vorontsov
2008-05-26 20:02 ` Alan Cox
2008-05-27 14:43 ` Timur Tabi
@ 2008-05-28 14:15 ` Maciej W. Rozycki
2 siblings, 0 replies; 4+ messages in thread
From: Maciej W. Rozycki @ 2008-05-28 14:15 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: Timur Tabi, linux-serial, linux-kernel
On Mon, 26 May 2008, Anton Vorontsov wrote:
> This patch fixes two drivers that are using "serial" for driver_name and
> not "ttyS" for dev_name. Drivers that are using "ttyS" for dev_name, will
> conflict anyway, so we don't bother with these.
>
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
> ---
> drivers/serial/sb1250-duart.c | 2 +-
> drivers/serial/ucc_uart.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Not that it makes much sense to have both included in the same kernel,
but for the purpose of purity:
Acked-by: Maciej W. Rozycki <macro@linux-mips.org>
Maciej
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-05-28 14:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-26 17:23 [PATCH] [SERIAL] fix driver_name conflicts Anton Vorontsov
2008-05-26 20:02 ` Alan Cox
2008-05-27 14:43 ` Timur Tabi
2008-05-28 14:15 ` Maciej W. Rozycki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox