Blame view

arch/sh/boards/board-titan.c 611 Bytes
a09749dd8   Jamie Lenehan   sh: Titan board s...
1
  /*
ea0f8feaa   Jamie Lenehan   sh: sh775x/titan ...
2
3
4
5
6
7
8
   * arch/sh/boards/titan/setup.c - Setup for Titan
   *
   *  Copyright (C) 2006  Jamie Lenehan
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
a09749dd8   Jamie Lenehan   sh: Titan board s...
9
   */
a09749dd8   Jamie Lenehan   sh: Titan board s...
10
  #include <linux/init.h>
ea0f8feaa   Jamie Lenehan   sh: sh775x/titan ...
11
  #include <linux/irq.h>
7639a4541   Paul Mundt   sh: Migrate commo...
12
  #include <mach/titan.h>
a09749dd8   Jamie Lenehan   sh: Titan board s...
13
  #include <asm/io.h>
a09749dd8   Jamie Lenehan   sh: Titan board s...
14
15
16
  static void __init init_titan_irq(void)
  {
  	/* enable individual interrupt mode for externals */
d59645d6b   Magnus Damm   sh: intc - remove...
17
  	plat_irq_setup_pins(IRQ_MODE_IRQ);
a09749dd8   Jamie Lenehan   sh: Titan board s...
18
  }
82f81f478   Paul Mundt   sh: Kill off mach...
19
  static struct sh_machine_vector mv_titan __initmv = {
f655f5e95   Paul Mundt   sh: mach-titan: K...
20
21
  	.mv_name	= "Titan",
  	.mv_init_irq	= init_titan_irq,
a09749dd8   Jamie Lenehan   sh: Titan board s...
22
  };