Release 4.14 arch/sh/boards/mach-se/board-se7619.c
// SPDX-License-Identifier: GPL-2.0
/*
* 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;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paul Mundt | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
/*
* The Machine Vector
*/
static struct sh_machine_vector mv_se __initmv = {
.mv_name = "SolutionEngine",
.mv_mode_pins = se7619_mode_pins,
};
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 28 | 60.87% | 2 | 40.00% |
Paul Mundt | 17 | 36.96% | 2 | 40.00% |
Greg Kroah-Hartman | 1 | 2.17% | 1 | 20.00% |
Total | 46 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.