diff options
Diffstat (limited to 'arch/sh/boards/se/7751/mach.c')
-rw-r--r-- | arch/sh/boards/se/7751/mach.c | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/arch/sh/boards/se/7751/mach.c b/arch/sh/boards/se/7751/mach.c deleted file mode 100644 index 1bb9047d863..00000000000 --- a/arch/sh/boards/se/7751/mach.c +++ /dev/null | |||
@@ -1,48 +0,0 @@ | |||
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 | #include <asm/machvec.h> | ||
14 | #include <asm/se7751.h> | ||
15 | |||
16 | void heartbeat_7751se(void); | ||
17 | void init_7751se_IRQ(void); | ||
18 | |||
19 | /* | ||
20 | * The Machine Vector | ||
21 | */ | ||
22 | |||
23 | struct sh_machine_vector mv_7751se __initmv = { | ||
24 | .mv_nr_irqs = 72, | ||
25 | |||
26 | .mv_inb = sh7751se_inb, | ||
27 | .mv_inw = sh7751se_inw, | ||
28 | .mv_inl = sh7751se_inl, | ||
29 | .mv_outb = sh7751se_outb, | ||
30 | .mv_outw = sh7751se_outw, | ||
31 | .mv_outl = sh7751se_outl, | ||
32 | |||
33 | .mv_inb_p = sh7751se_inb_p, | ||
34 | .mv_inw_p = sh7751se_inw, | ||
35 | .mv_inl_p = sh7751se_inl, | ||
36 | .mv_outb_p = sh7751se_outb_p, | ||
37 | .mv_outw_p = sh7751se_outw, | ||
38 | .mv_outl_p = sh7751se_outl, | ||
39 | |||
40 | .mv_insl = sh7751se_insl, | ||
41 | .mv_outsl = sh7751se_outsl, | ||
42 | |||
43 | .mv_init_irq = init_7751se_IRQ, | ||
44 | #ifdef CONFIG_HEARTBEAT | ||
45 | .mv_heartbeat = heartbeat_7751se, | ||
46 | #endif | ||
47 | }; | ||
48 | ALIAS_MV(7751se) | ||