Re: [PATCH] irqchip: crossbar: Fix incorrect type of register size

2017-03-06 Thread Franck Demathieu
On Mon, Mar 06, 2017 at 02:56:14PM +, Marc Zyngier wrote: > On Mon, Mar 06 2017 at 1:41:06 pm GMT, Franck Demathieu > wrote: > > The 'size' variable is unsigned according to the dt-bindings. > > As this variable is used as integer in other places, create a new

[PATCH] irqchip: crossbar: Fix incorrect type of register size

2017-03-06 Thread Franck Demathieu
(different signedness) drivers/irqchip/irq-crossbar.c:279:52:expected unsigned int [usertype] *out_value drivers/irqchip/irq-crossbar.c:279:52:got int * Signed-off-by: Franck Demathieu --- drivers/irqchip/irq-crossbar.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[tip:irq/urgent] irqchip/crossbar: Fix incorrect type of local variables

2017-03-01 Thread tip-bot for Franck Demathieu
Commit-ID: b28ace12661fbcfd90959c1e84ff5a85113a82a1 Gitweb: http://git.kernel.org/tip/b28ace12661fbcfd90959c1e84ff5a85113a82a1 Author: Franck Demathieu AuthorDate: Thu, 23 Feb 2017 10:48:55 +0100 Committer: Thomas Gleixner CommitDate: Wed, 1 Mar 2017 10:08:20 +0100 irqchip/crossbar

[PATCH] irqchip: crossbar: Fix incorrect type of local variables

2017-02-23 Thread Franck Demathieu
:got int * drivers/irqchip/irq-crossbar.c:263:56: warning: incorrect type in argument 4 (different signedness) drivers/irqchip/irq-crossbar.c:263:56:expected unsigned int [usertype] *out_value drivers/irqchip/irq-crossbar.c:263:56:got int * Signed-off-by: Franck Demathieu