Commit 806db994 authored by James Dingwall's avatar James Dingwall Committed by Greg Kroah-Hartman

Xen: fix typo in previous patch

Correctly name the irq_chip structure to fix an immediate failure when booting
as a xen pv_ops guest with a NULL pointer exception. The missing 'x' was
introduced in commit [fb412a17] applied to
2.6.3[25]-stable trees.  The commit to mainline was
[aaca4964] which did not have the problem.
Signed-off-by: default avatarJames Dingwall <james@dingwall.me.uk>
Reported-by: default avatarPawel Zuzelski <pawelz@pld-linux.org>
Tested-by: default avatarPawel Zuzelski <pawelz@pld-linux.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0ee0f94f
......@@ -930,7 +930,7 @@ static struct irq_chip xen_dynamic_chip __read_mostly = {
.retrigger = retrigger_dynirq,
};
static struct irq_chip en_percpu_chip __read_mostly = {
static struct irq_chip xen_percpu_chip __read_mostly = {
.name = "xen-percpu",
.disable = disable_dynirq,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment