/*1* arch/sh/boards/titan/setup.c - Setup for Titan2*3* Copyright (C) 2006 Jamie Lenehan4*5* This file is subject to the terms and conditions of the GNU General Public6* License. See the file "COPYING" in the main directory of this archive7* for more details.8*/9#include <linux/init.h>10#include <linux/irq.h>11#include <mach/titan.h>12#include <asm/io.h>1314static void __init init_titan_irq(void)15{16/* enable individual interrupt mode for externals */17plat_irq_setup_pins(IRQ_MODE_IRQ);18}1920static struct sh_machine_vector mv_titan __initmv = {21.mv_name = "Titan",22.mv_init_irq = init_titan_irq,23};242526