[PATCH] xen/pci: remove redundant assignment to variable irq

2020-04-09 Thread Colin King
From: Colin Ian King The variable irq is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King --- arch/x86/pci/xen.c | 2 +- 1 fi

Re: [PATCH] xen/pci: remove redundant assignment to variable irq

2020-06-30 Thread Bjorn Helgaas
[+cc Juergen, Boris] On Thu, Apr 09, 2020 at 12:41:18PM +0100, Colin King wrote: > From: Colin Ian King > > The variable irq is being initialized with a value that is never read > and it is being updated later with a new value. The initialization is > redundant and can be removed. > > Addresse