projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3366cdb
)
xen: fix GCC warning and remove duplicate EVTCHN_ROW/EVTCHN_COL usage
author
Josh Abraham
<j.abraham1776@gmail.com>
Thu, 13 Sep 2018 01:13:54 +0000
(15:13 -1000)
committer
Boris Ostrovsky
<boris.ostrovsky@oracle.com>
Fri, 14 Sep 2018 12:51:10 +0000
(08:51 -0400)
This patch removes duplicate macro useage in events_base.c.
It also fixes gcc warning:
variable ‘col’ set but not used [-Wunused-but-set-variable]
Signed-off-by: Joshua Abraham <j.abraham1776@gmail.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
drivers/xen/events/events_base.c
patch
|
blob
|
history
diff --git
a/drivers/xen/events/events_base.c
b/drivers/xen/events/events_base.c
index 08e4af04d6f2c32850a049a83721933a82883b8c..e6c1934734b7d9bdde87e8a9e006e1584c88f15d 100644
(file)
--- a/
drivers/xen/events/events_base.c
+++ b/
drivers/xen/events/events_base.c
@@
-138,7
+138,7
@@
static int set_evtchn_to_irq(unsigned evtchn, unsigned irq)
clear_evtchn_to_irq_row(row);
}
- evtchn_to_irq[
EVTCHN_ROW(evtchn)][EVTCHN_COL(evtchn)
] = irq;
+ evtchn_to_irq[
row][col
] = irq;
return 0;
}