Message ID | 20210721114010.108648-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 83f877a09516bcb82e34df621cc3a794509a11a3 |
Headers | show |
Series | xen/events: remove redundant initialization of variable irq | expand |
On 21.07.21 13:40, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > 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> Reviewed-by: Juergen Gross <jgross@suse.com> Juergen
On 7/21/21 11:36 AM, Juergen Gross wrote: > On 21.07.21 13:40, Colin King wrote: >> From: Colin Ian King <colin.king@canonical.com> >> >> 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> > > Reviewed-by: Juergen Gross <jgross@suse.com> Applied to for-linus-5.14 -boris
diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c index d7e361fb0548..154daddbdcb4 100644 --- a/drivers/xen/events/events_base.c +++ b/drivers/xen/events/events_base.c @@ -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;