Path: blob/master/arch/sh/boards/mach-lboxre2/irq.c
15126 views
/*1* linux/arch/sh/boards/lboxre2/irq.c2*3* Copyright (C) 2007 Nobuhiro Iwamatsu4*5* NTT COMWARE L-BOX RE2 Support.6*7* This file is subject to the terms and conditions of the GNU General Public8* License. See the file "COPYING" in the main directory of this archive9* for more details.10*11*/12#include <linux/init.h>13#include <linux/interrupt.h>14#include <linux/irq.h>15#include <asm/irq.h>16#include <asm/io.h>17#include <mach/lboxre2.h>1819/*20* Initialize IRQ setting21*/22void __init init_lboxre2_IRQ(void)23{24make_imask_irq(IRQ_CF1);25make_imask_irq(IRQ_CF0);26make_imask_irq(IRQ_INTD);27make_imask_irq(IRQ_ETH1);28make_imask_irq(IRQ_ETH0);29make_imask_irq(IRQ_INTA);30}313233