From: James Dingwall Date: Mon, 27 Sep 2010 08:37:17 +0000 (+0100) Subject: Xen: fix typo in previous patch X-Git-Tag: v2.6.35.7~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0dd220aefe1ab80823cf13e9588c64fec151488;p=thirdparty%2Fkernel%2Fstable.git 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 Reported-by: Pawel Zuzelski Tested-by: Pawel Zuzelski Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 14ed3582025af..6830a4d067fcb 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -935,7 +935,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,