mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

This can use the generic routines, so kill off the board-specific ones. Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
22 lines
374 B
C
22 lines
374 B
C
/*
|
|
* arch/sh/boards/se/7619/setup.c
|
|
*
|
|
* Copyright (C) 2006 Yoshinori Sato
|
|
*
|
|
* Hitachi SH7619 SolutionEngine Support.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
#include <asm/io.h>
|
|
#include <asm/machvec.h>
|
|
|
|
/*
|
|
* The Machine Vector
|
|
*/
|
|
|
|
struct sh_machine_vector mv_se __initmv = {
|
|
.mv_name = "SolutionEngine",
|
|
.mv_nr_irqs = 108,
|
|
};
|
|
ALIAS_MV(se)
|