mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
xen/events: remove redundant initialization of variable irq
The variable irq is being initialized with a value that is never
read, it is being updated later on. The assignment is redundant and
can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210721114010.108648-1-colin.king@canonical.com
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
This commit is contained in:
committed by
Boris Ostrovsky
parent
629a5d87e2
commit
83f877a095
@@ -1009,7 +1009,7 @@ static void __unbind_from_irq(unsigned int irq)
|
||||
int xen_bind_pirq_gsi_to_irq(unsigned gsi,
|
||||
unsigned pirq, int shareable, char *name)
|
||||
{
|
||||
int irq = -1;
|
||||
int irq;
|
||||
struct physdev_irq irq_op;
|
||||
int ret;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user