From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759520AbZEBUCU (ORCPT ); Sat, 2 May 2009 16:02:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758851AbZEBUBe (ORCPT ); Sat, 2 May 2009 16:01:34 -0400 Received: from www.tglx.de ([62.245.132.106]:55704 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758529AbZEBUBd (ORCPT ); Sat, 2 May 2009 16:01:33 -0400 Message-Id: <20090502195925.146937747@linutronix.de> User-Agent: quilt/0.47-1 Date: Sat, 02 May 2009 20:00:40 -0000 From: Thomas Gleixner To: LKML Cc: Andrew Morton , Ingo Molnar , Tony Luck Subject: [patch 01/11] ia64: remove obsolete no_irq_type References: <20090502195607.539955644@linutronix.de> Content-Disposition: inline; filename=ia64-remove-obsolete-no-irq-type.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Impact: cleanup convert the last remaining users to no_irq_chip Signed-off-by: Thomas Gleixner CC: Tony Luck --- arch/ia64/hp/sim/hpsim_irq.c | 2 +- arch/ia64/kernel/iosapic.c | 2 +- arch/ia64/sn/kernel/irq.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Index: linux-2.6/arch/ia64/hp/sim/hpsim_irq.c =================================================================== --- linux-2.6.orig/arch/ia64/hp/sim/hpsim_irq.c +++ linux-2.6/arch/ia64/hp/sim/hpsim_irq.c @@ -45,7 +45,7 @@ hpsim_irq_init (void) for (i = 0; i < NR_IRQS; ++i) { idesc = irq_desc + i; - if (idesc->chip == &no_irq_type) + if (idesc->chip == &no_irq_chip) idesc->chip = &irq_type_hp_sim; } } Index: linux-2.6/arch/ia64/kernel/iosapic.c =================================================================== --- linux-2.6.orig/arch/ia64/kernel/iosapic.c +++ linux-2.6/arch/ia64/kernel/iosapic.c @@ -648,7 +648,7 @@ register_intr (unsigned int gsi, int irq idesc = irq_desc + irq; if (irq_type != NULL && idesc->chip != irq_type) { - if (idesc->chip != &no_irq_type) + if (idesc->chip != &no_irq_chip) printk(KERN_WARNING "%s: changing vector %d from %s to %s\n", __func__, irq_to_vector(irq), Index: linux-2.6/arch/ia64/sn/kernel/irq.c =================================================================== --- linux-2.6.orig/arch/ia64/sn/kernel/irq.c +++ linux-2.6/arch/ia64/sn/kernel/irq.c @@ -299,7 +299,7 @@ void sn_irq_init(void) ia64_last_device_vector = IA64_SN2_LAST_DEVICE_VECTOR; for (i = 0; i < NR_IRQS; i++) { - if (base_desc[i].chip == &no_irq_type) { + if (base_desc[i].chip == &no_irq_chip) { base_desc[i].chip = &irq_type_sn; } }