ieee1394: raw1394: arm functions slept in atomic context
[pandora-kernel.git] / arch / sh / boards / se / 7751 / mach.c
1 /*
2  * linux/arch/sh/kernel/mach_7751se.c
3  *
4  * Minor tweak of mach_se.c file to reference 7751se-specific items.
5  *
6  * May be copied or modified under the terms of the GNU General Public
7  * License.  See linux/COPYING for more information.
8  *
9  * Machine vector for the Hitachi 7751 SolutionEngine
10  */
11
12 #include <linux/init.h>
13
14 #include <asm/machvec.h>
15 #include <asm/rtc.h>
16 #include <asm/machvec_init.h>
17
18 #include <asm/se7751/io.h>
19
20 void heartbeat_7751se(void);
21 void init_7751se_IRQ(void);
22
23 /*
24  * The Machine Vector
25  */
26
27 struct sh_machine_vector mv_7751se __initmv = {
28         .mv_nr_irqs             = 72,
29
30         .mv_inb                 = sh7751se_inb,
31         .mv_inw                 = sh7751se_inw,
32         .mv_inl                 = sh7751se_inl,
33         .mv_outb                = sh7751se_outb,
34         .mv_outw                = sh7751se_outw,
35         .mv_outl                = sh7751se_outl,
36
37         .mv_inb_p               = sh7751se_inb_p,
38         .mv_inw_p               = sh7751se_inw,
39         .mv_inl_p               = sh7751se_inl,
40         .mv_outb_p              = sh7751se_outb_p,
41         .mv_outw_p              = sh7751se_outw,
42         .mv_outl_p              = sh7751se_outl,
43
44         .mv_insl                = sh7751se_insl,
45         .mv_outsl               = sh7751se_outsl,
46
47         .mv_isa_port2addr       = sh7751se_isa_port2addr,
48
49         .mv_init_irq            = init_7751se_IRQ,
50 #ifdef CONFIG_HEARTBEAT
51         .mv_heartbeat           = heartbeat_7751se,
52 #endif
53 };
54 ALIAS_MV(7751se)