This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Sat Apr 27 06:37:50 2024 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262761AbTJJJWM (ORCPT ); Fri, 10 Oct 2003 05:22:12 -0400 Received: from TYO202.gate.nec.co.jp ([210.143.35.52]:57787 "EHLO TYO202.gate.nec.co.jp") by vger.kernel.org with ESMTP id S262759AbTJJJWH (ORCPT ); Fri, 10 Oct 2003 05:22:07 -0400 Received: from mailgate4.nec.co.jp (mailgate53.nec.co.jp [10.7.69.184]) by TYO202.gate.nec.co.jp (8.11.7/3.7W01080315) with ESMTP id h9A9M3l28973; Fri, 10 Oct 2003 18:22:03 +0900 (JST) Received: (from root@localhost) by mailgate4.nec.co.jp (8.11.7/3.7W-MAILGATE-NEC) id h9A9M3T20894; Fri, 10 Oct 2003 18:22:03 +0900 (JST) Received: from edtmg02.lsi.nec.co.jp ([10.26.16.202]) by mailsv5.nec.co.jp (8.11.7/3.7W-MAILSV-NEC) with ESMTP id h9A9M2o29469; Fri, 10 Oct 2003 18:22:02 +0900 (JST) Received: from mcsss2.ucom.lsi.nec.co.jp (localhost [127.0.0.1]) by edtmg02.lsi.nec.co.jp (8.9.3p2+3.2W/3.7W_EDC_Ver.1.0) with ESMTP id SAA09568; Fri, 10 Oct 2003 18:22:02 +0900 (JST) Received: from mcspd15.ucom.lsi.nec.co.jp (mcspd15 [10.30.114.174]) by mcsss2.ucom.lsi.nec.co.jp (8.12.10/8.12.8/EDcg v2.01-mc/1046780839) with ESMTP id h9A9M17Q000786; Fri, 10 Oct 2003 18:22:01 +0900 (JST) Received: by mcspd15.ucom.lsi.nec.co.jp (Postfix, from userid 31295) id 3F87937E8; Fri, 10 Oct 2003 18:22:01 +0900 (JST) To: Linus Torvalds Subject: [PATCH][v850] Use irqreturn_t on v850 rte-me2-cb platform Cc: linux-kernel@vger.kernel.org Reply-To: Miles Bader Message-Id: <20031010092201.3F87937E8@mcspd15.ucom.lsi.nec.co.jp> Date: Fri, 10 Oct 2003 18:22:01 +0900 (JST) From: miles@lsi.nec.co.jp (Miles Bader) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org Linus, please apply. The cb_pic_handle_irq function on this platform hadn't been updated to use irqreturn_t; do so. diff -ruN -X../cludes linux-2.6.0-test7-moo/arch/v850/kernel/rte_me2_cb.c linux-2.6.0-test7-moo-v850-20031010/arch/v850/kernel/rte_me2_cb.c --- linux-2.6.0-test7-moo/arch/v850/kernel/rte_me2_cb.c 2003-07-28 10:13:58.000000000 +0900 +++ linux-2.6.0-test7-moo-v850-20031010/arch/v850/kernel/rte_me2_cb.c 2003-10-10 18:01:48.000000000 +0900 @@ -230,8 +217,10 @@ CB_PIC_INT1M &= ~(1 << (irq - CB_PIC_BASE_IRQ)); } -static void cb_pic_handle_irq (int irq, void *dev_id, struct pt_regs *regs) +static irqreturn_t cb_pic_handle_irq (int irq, void *dev_id, + struct pt_regs *regs) { + irqreturn_t rval = IRQ_NONE; unsigned status = CB_PIC_INTR; unsigned enable = CB_PIC_INT1M; @@ -257,13 +246,16 @@ /* Recursively call handle_irq to handle it. */ handle_irq (irq, regs); + rval = IRQ_HANDLED; } while (status); } CB_PIC_INTEN |= CB_PIC_INT1EN; -} + return rval; +} + static void irq_nop (unsigned irq) { } static unsigned cb_pic_startup_irq (unsigned irq) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/