Merge branch 'stable/bug-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...
[pandora-kernel.git] / arch / sh / boards / mach-se / board-se7619.c
1 /*
2  * arch/sh/boards/se/7619/setup.c
3  *
4  * Copyright (C) 2006 Yoshinori Sato
5  *
6  * Hitachi SH7619 SolutionEngine Support.
7  */
8
9 #include <linux/init.h>
10 #include <linux/platform_device.h>
11 #include <asm/io.h>
12 #include <asm/machvec.h>
13
14 static int se7619_mode_pins(void)
15 {
16         return MODE_PIN2 | MODE_PIN0;
17 }
18
19 /*
20  * The Machine Vector
21  */
22
23 static struct sh_machine_vector mv_se __initmv = {
24         .mv_name                = "SolutionEngine",
25         .mv_nr_irqs             = 108,
26         .mv_mode_pins           = se7619_mode_pins,
27 };