Re: [PATCH] serial: altera-juart: fix NULL device in log message

2014-12-16 Thread Tobias Klauser
On 2014-12-16 at 08:27:46 +0100, Ley Foon Tan  wrote:
> Add device pointer to port->dev.
> 
> Before:
> 
> "(NULL device *): ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) is a
> Altera JTAG UART"
> 
> After:
> "altera_jtaguart 1008.serial: ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) 
> is a
> Altera JTAG UART"
> 
> Signed-off-by: Ley Foon Tan 

Acked-by: Tobias Klauser 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] serial: altera-juart: fix NULL device in log message

2014-12-16 Thread Tobias Klauser
On 2014-12-16 at 08:27:46 +0100, Ley Foon Tan lf...@altera.com wrote:
 Add device pointer to port-dev.
 
 Before:
 
 (NULL device *): ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) is a
 Altera JTAG UART
 
 After:
 altera_jtaguart 1008.serial: ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) 
 is a
 Altera JTAG UART
 
 Signed-off-by: Ley Foon Tan lf...@altera.com

Acked-by: Tobias Klauser tklau...@distanz.ch
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] serial: altera-juart: fix NULL device in log message

2014-12-15 Thread Ley Foon Tan
Add device pointer to port->dev.

Before:

"(NULL device *): ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) is a
Altera JTAG UART"

After:
"altera_jtaguart 1008.serial: ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) is a
Altera JTAG UART"

Signed-off-by: Ley Foon Tan 
---
 drivers/tty/serial/altera_jtaguart.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/tty/serial/altera_jtaguart.c 
b/drivers/tty/serial/altera_jtaguart.c
index 192d043..0fefdd8 100644
--- a/drivers/tty/serial/altera_jtaguart.c
+++ b/drivers/tty/serial/altera_jtaguart.c
@@ -441,6 +441,7 @@ static int altera_jtaguart_probe(struct platform_device 
*pdev)
port->iotype = SERIAL_IO_MEM;
port->ops = _jtaguart_ops;
port->flags = UPF_BOOT_AUTOCONF;
+   port->dev = >dev;
 
uart_add_one_port(_jtaguart_driver, port);
 
-- 
1.8.2.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] serial: altera-juart: fix NULL device in log message

2014-12-15 Thread Ley Foon Tan
Add device pointer to port-dev.

Before:

(NULL device *): ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) is a
Altera JTAG UART

After:
altera_jtaguart 1008.serial: ttyJ0 at MMIO 0x1008 (irq = 2, base_baud = 0) is a
Altera JTAG UART

Signed-off-by: Ley Foon Tan lf...@altera.com
---
 drivers/tty/serial/altera_jtaguart.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/tty/serial/altera_jtaguart.c 
b/drivers/tty/serial/altera_jtaguart.c
index 192d043..0fefdd8 100644
--- a/drivers/tty/serial/altera_jtaguart.c
+++ b/drivers/tty/serial/altera_jtaguart.c
@@ -441,6 +441,7 @@ static int altera_jtaguart_probe(struct platform_device 
*pdev)
port-iotype = SERIAL_IO_MEM;
port-ops = altera_jtaguart_ops;
port-flags = UPF_BOOT_AUTOCONF;
+   port-dev = pdev-dev;
 
uart_add_one_port(altera_jtaguart_driver, port);
 
-- 
1.8.2.1

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/