Re: [Xen-devel] [PATCH] xen: char: Remove unnecessary (uart->irq > 0) check

2018-04-30 Thread Andre Przywara
Hi, On 28/04/18 10:08, Amit Singh Tomar wrote: > While working on MVEBU uart driver, Julien pointed out that (uart->irq > 0) > check is unnecessary during irq set up.if ever there is an invalid irq, driver > initialization itself would be bailed out from platform_get_irq. > > This patch would rem

Re: [Xen-devel] [PATCH] xen: char: Remove unnecessary (uart->irq > 0) check

2018-04-30 Thread Julien Grall
Hi, On 30/04/18 09:19, Jan Beulich wrote: On 28.04.18 at 11:08, wrote: While working on MVEBU uart driver, Julien pointed out that (uart->irq > 0) check is unnecessary during irq set up.if ever there is an invalid irq, driver initialization itself would be bailed out from platform_get_irq. Th

Re: [Xen-devel] [PATCH] xen: char: Remove unnecessary (uart->irq > 0) check

2018-04-30 Thread Jan Beulich
>>> On 28.04.18 at 11:08, wrote: > While working on MVEBU uart driver, Julien pointed out that (uart->irq > 0) > check is unnecessary during irq set up.if ever there is an invalid irq, driver > initialization itself would be bailed out from platform_get_irq. > > This patch would remove similar ch

[Xen-devel] [PATCH] xen: char: Remove unnecessary (uart->irq > 0) check

2018-04-28 Thread Amit Singh Tomar
While working on MVEBU uart driver, Julien pointed out that (uart->irq > 0) check is unnecessary during irq set up.if ever there is an invalid irq, driver initialization itself would be bailed out from platform_get_irq. This patch would remove similar check for other uart drivers present in XEN.