diff options
author | James Dingwall <james.dingwall@amdocs.com> | 2010-09-27 09:37:17 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-01 13:51:42 -0700 |
commit | 806db9941aff0b3179e089c1f99453497b53c480 (patch) | |
tree | b75e3773348e6c2c04ff5c1dbaeb46f3bc31a0db | |
parent | 0ee0f94f82153cc3e4a94a180349c28d1218f1d7 (diff) |
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 [fb412a178502dc498430723b082a932f797e4763] applied to
2.6.3[25]-stable trees. The commit to mainline was
[aaca49642b92c8a57d3ca5029a5a94019c7af69f] which did not have the problem.
Signed-off-by: James Dingwall <james@dingwall.me.uk>
Reported-by: Pawel Zuzelski <pawelz@pld-linux.org>
Tested-by: Pawel Zuzelski <pawelz@pld-linux.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/xen/events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index a4dc7bf8fa1..ac91a4e3a9a 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -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, |