Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: a49f0d1ea3ec94fc7cf33a7c36a16343b74bd565 authored by Linus Torvalds on 22 December 2012, 01:19:00 UTC
Linux 3.8-rc1
Tip revision: a49f0d1
board-se7619.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>

static int se7619_mode_pins(void)
{
	return MODE_PIN2 | MODE_PIN0;
}

/*
 * The Machine Vector
 */

static struct sh_machine_vector mv_se __initmv = {
	.mv_name		= "SolutionEngine",
	.mv_mode_pins		= se7619_mode_pins,
};
back to top