From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750804AbWFXO5c (ORCPT ); Sat, 24 Jun 2006 10:57:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752248AbWFXO5c (ORCPT ); Sat, 24 Jun 2006 10:57:32 -0400 Received: from sj-iport-4.cisco.com ([171.68.10.86]:31067 "EHLO sj-iport-4.cisco.com") by vger.kernel.org with ESMTP id S1750804AbWFXO5b (ORCPT ); Sat, 24 Jun 2006 10:57:31 -0400 X-IronPort-AV: i="4.06,172,1149490800"; d="scan'208"; a="1832010963:sNHT35390512" To: Roman Zippel Cc: Andrew Morton , linux-kernel@vger.kernel.org, jbeulich@novell.com Subject: Re: Subject: [PATCH] reintegrate irqreturn.h into hardirq.h X-Message-Flag: Warning: May contain useful information References: From: Roland Dreier Date: Sat, 24 Jun 2006 07:57:28 -0700 In-Reply-To: (Roman Zippel's message of "Fri, 23 Jun 2006 19:45:22 +0200 (CEST)") Message-ID: User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.18 (linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-OriginalArrivalTime: 24 Jun 2006 14:57:30.0053 (UTC) FILETIME=[83EBBF50:01C6979E] Authentication-Results: sj-dkim-5.cisco.com; header.From=rdreier@cisco.com; dkim=pass ( sig from cisco.com verified; ); Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org > -extern fastcall irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs, > +extern fastcall int handle_IRQ_event(unsigned int irq, struct pt_regs *regs, > struct irqaction *action); This seems like a step backwards: this changes the declaration of handle_IRQ_event() so it no longer matches the real definition. - R.