From: Colin Ngam Date: Fri, 18 Mar 2005 23:38:00 +0000 (-0700) Subject: [IA64-SGI] Altix only: Register Error Interrupt X-Git-Tag: upstream/snapshot3+hdmi~48065^2~5^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0b12422e5e1d041026dd27074de17d2d7e32c4e;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [IA64-SGI] Altix only: Register Error Interrupt The following patch ensures that the correct error interrupt handling routine is initialized. This patch is based on the 2.6.12 ia64 release tree. Signed-off-by: Colin Ngam Signed-off-by: Tony Luck --- diff --git a/arch/ia64/sn/kernel/io_init.c b/arch/ia64/sn/kernel/io_init.c index 18160a0..9e07f54 100644 --- a/arch/ia64/sn/kernel/io_init.c +++ b/arch/ia64/sn/kernel/io_init.c @@ -174,6 +174,12 @@ static void sn_fixup_ionodes(void) if (status) continue; + /* Attach the error interrupt handlers */ + if (nasid & 1) + ice_error_init(hubdev); + else + hub_error_init(hubdev); + for (widget = 0; widget <= HUB_WIDGET_ID_MAX; widget++) hubdev->hdi_xwidget_info[widget].xwi_hubinfo = hubdev; @@ -211,10 +217,6 @@ static void sn_fixup_ionodes(void) sn_flush_device_list; } - if (!(i & 1)) - hub_error_init(hubdev); - else - ice_error_init(hubdev); } }