From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756681AbZCKAwF (ORCPT ); Tue, 10 Mar 2009 20:52:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754040AbZCKArh (ORCPT ); Tue, 10 Mar 2009 20:47:37 -0400 Received: from www.tglx.de ([62.245.132.106]:40118 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754439AbZCKArg (ORCPT ); Tue, 10 Mar 2009 20:47:36 -0400 Message-Id: <20090311003237.292838774@linutronix.de> User-Agent: quilt/0.47-1 Date: Wed, 11 Mar 2009 00:46:34 -0000 From: Thomas Gleixner To: LKML Cc: Andrew Morton , Ingo Molnar , Paul Mundt Subject: [patch 17/18] sh: convert obsolete hw_interrupt_type to struct irq_chip References: <20090311003204.592133594@linutronix.de> Content-Disposition: inline; filename=sh-convert-obsolete-hw-interrupt-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 struct irq_chip. Signed-off-by: Thomas Gleixner CC: Paul Mundt --- arch/sh/kernel/cpu/irq/imask.c | 2 +- arch/sh/kernel/cpu/irq/intc-sh5.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: linux-2.6/arch/sh/kernel/cpu/irq/imask.c =================================================================== --- linux-2.6.orig/arch/sh/kernel/cpu/irq/imask.c +++ linux-2.6/arch/sh/kernel/cpu/irq/imask.c @@ -39,7 +39,7 @@ static unsigned int startup_imask_irq(un return 0; /* never anything pending */ } -static struct hw_interrupt_type imask_irq_type = { +static struct irq_chip imask_irq_type = { .typename = "SR.IMASK", .startup = startup_imask_irq, .shutdown = shutdown_imask_irq, Index: linux-2.6/arch/sh/kernel/cpu/irq/intc-sh5.c =================================================================== --- linux-2.6.orig/arch/sh/kernel/cpu/irq/intc-sh5.c +++ linux-2.6/arch/sh/kernel/cpu/irq/intc-sh5.c @@ -84,7 +84,7 @@ static void disable_intc_irq(unsigned in static void mask_and_ack_intc(unsigned int); static void end_intc_irq(unsigned int irq); -static struct hw_interrupt_type intc_irq_type = { +static struct irq_chip intc_irq_type = { .typename = "INTC", .startup = startup_intc_irq, .shutdown = shutdown_intc_irq,