From patchwork Tue Feb 10 15:16:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ananth N Mavinakayanahalli X-Patchwork-Id: 438441 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 8D2B6140151 for ; Wed, 11 Feb 2015 02:16:03 +1100 (AEDT) Received: from ozlabs.org (ozlabs.org [103.22.144.67]) by lists.ozlabs.org (Postfix) with ESMTP id 7A74F1A08CC for ; Wed, 11 Feb 2015 02:16:03 +1100 (AEDT) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from e23smtp02.au.ibm.com (e23smtp02.au.ibm.com [202.81.31.144]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id A740E1A03D1 for ; Wed, 11 Feb 2015 02:16:01 +1100 (AEDT) Received: from /spool/local by e23smtp02.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 11 Feb 2015 01:16:00 +1000 Received: from d23dlp03.au.ibm.com (202.81.31.214) by e23smtp02.au.ibm.com (202.81.31.208) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Wed, 11 Feb 2015 01:15:58 +1000 Received: from d23relay08.au.ibm.com (d23relay08.au.ibm.com [9.185.71.33]) by d23dlp03.au.ibm.com (Postfix) with ESMTP id 8C510357804C for ; Wed, 11 Feb 2015 02:15:58 +1100 (EST) Received: from d23av04.au.ibm.com (d23av04.au.ibm.com [9.190.235.139]) by d23relay08.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t1AFFjHG47579270 for ; Wed, 11 Feb 2015 02:15:53 +1100 Received: from d23av04.au.ibm.com (localhost [127.0.0.1]) by d23av04.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t1AFFPPo014705 for ; Wed, 11 Feb 2015 02:15:25 +1100 Received: from thinktux.in.ibm.com ([9.79.200.135]) by d23av04.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t1AFFOci014268 for ; Wed, 11 Feb 2015 02:15:24 +1100 To: skiboot@lists.ozlabs.org From: Ananth N Mavinakayanahalli Date: Tue, 10 Feb 2015 20:46:20 +0530 Message-ID: <20150210151620.14819.65462.stgit@thinktux.in.ibm.com> In-Reply-To: <20150210151237.14819.6035.stgit@thinktux.in.ibm.com> References: <20150210151237.14819.6035.stgit@thinktux.in.ibm.com> User-Agent: StGit/0.16 MIME-Version: 1.0 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15021015-0005-0000-0000-000001508A8F Subject: [Skiboot] [PATCH 08/10] interrupts: Change abort to assert X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" ... so we get good debug data on TI Signed-off-by: Ananth N Mavinakayanahalli --- core/interrupts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/interrupts.c b/core/interrupts.c index df48c8d..6100000 100644 --- a/core/interrupts.c +++ b/core/interrupts.c @@ -160,7 +160,7 @@ uint32_t get_ics_phandle(void) return i->phandle; } } - abort(); + assert(false); } void add_opal_interrupts(void)