Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-15 Thread Vignesh R
On Tuesday 14 March 2017 09:29 PM, Andy Shevchenko wrote: > On Tue, Mar 14, 2017 at 3:44 PM, Vignesh R wrote: >> On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: >>> On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: Passing "serial" as name during

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-15 Thread Vignesh R
On Tuesday 14 March 2017 09:29 PM, Andy Shevchenko wrote: > On Tue, Mar 14, 2017 at 3:44 PM, Vignesh R wrote: >> On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: >>> On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: Passing "serial" as name during request_irq() results in all

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-15 Thread Jisheng Zhang
On Tue, 14 Mar 2017 17:59:01 +0200 Andy Shevchenko wrote: > On Tue, Mar 14, 2017 at 3:44 PM, Vignesh R wrote: > > On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: > >> On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: > >>> Passing "serial" as name

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-15 Thread Jisheng Zhang
On Tue, 14 Mar 2017 17:59:01 +0200 Andy Shevchenko wrote: > On Tue, Mar 14, 2017 at 3:44 PM, Vignesh R wrote: > > On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: > >> On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: > >>> Passing "serial" as name during request_irq() results in all

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-14 Thread Andy Shevchenko
On Tue, Mar 14, 2017 at 3:44 PM, Vignesh R wrote: > On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: >> On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: >>> Passing "serial" as name during request_irq() results in all serial port >>> irqs have same name.

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-14 Thread Andy Shevchenko
On Tue, Mar 14, 2017 at 3:44 PM, Vignesh R wrote: > On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: >> On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: >>> Passing "serial" as name during request_irq() results in all serial port >>> irqs have same name. This does not help much to easily

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-14 Thread Vignesh R
On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: > On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: >> Passing "serial" as name during request_irq() results in all serial port >> irqs have same name. This does not help much to easily identify which >> irq belongs to

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-14 Thread Vignesh R
On Monday 13 March 2017 01:35 AM, Andy Shevchenko wrote: > On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: >> Passing "serial" as name during request_irq() results in all serial port >> irqs have same name. This does not help much to easily identify which >> irq belongs to which serial port

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-12 Thread Andy Shevchenko
On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: > Passing "serial" as name during request_irq() results in all serial port > irqs have same name. This does not help much to easily identify which > irq belongs to which serial port instance. Therefore pass dev_name() > during

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-12 Thread Andy Shevchenko
On Wed, Mar 8, 2017 at 2:19 PM, Vignesh R wrote: > Passing "serial" as name during request_irq() results in all serial port > irqs have same name. This does not help much to easily identify which > irq belongs to which serial port instance. Therefore pass dev_name() > during request_irq() so that

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-09 Thread Vignesh R
Hi, On Wednesday 08 March 2017 06:04 PM, Greg Kroah-Hartman wrote: > On Wed, Mar 08, 2017 at 05:49:43PM +0530, Vignesh R wrote: >> Passing "serial" as name during request_irq() results in all serial port >> irqs have same name. This does not help much to easily identify which >> irq belongs to

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-09 Thread Vignesh R
Hi, On Wednesday 08 March 2017 06:04 PM, Greg Kroah-Hartman wrote: > On Wed, Mar 08, 2017 at 05:49:43PM +0530, Vignesh R wrote: >> Passing "serial" as name during request_irq() results in all serial port >> irqs have same name. This does not help much to easily identify which >> irq belongs to

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-08 Thread Greg Kroah-Hartman
On Wed, Mar 08, 2017 at 05:49:43PM +0530, Vignesh R wrote: > Passing "serial" as name during request_irq() results in all serial port > irqs have same name. This does not help much to easily identify which > irq belongs to which serial port instance. Therefore pass dev_name() > during

Re: [PATCH] serial: 8250: 8250_core: Use dev_name() during request_irq()

2017-03-08 Thread Greg Kroah-Hartman
On Wed, Mar 08, 2017 at 05:49:43PM +0530, Vignesh R wrote: > Passing "serial" as name during request_irq() results in all serial port > irqs have same name. This does not help much to easily identify which > irq belongs to which serial port instance. Therefore pass dev_name() > during