1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * arch/sh/boards/se/7619/setup.c 4 * 5 * Copyright (C) 2006 Yoshinori Sato 6 * 7 * Hitachi SH7619 SolutionEngine Support. 8 */ 9 10 #include <linux/init.h> 11 #include <linux/platform_device.h> 12 #include <asm/io.h> 13 #include <asm/machvec.h> 14 15 static int se7619_mode_pins(void) 16 { 17 return MODE_PIN2 | MODE_PIN0; 18 } 19 20 /* 21 * The Machine Vector 22 */ 23 24 static struct sh_machine_vector mv_se __initmv = { 25 .mv_name = "SolutionEngine", 26 .mv_mode_pins = se7619_mode_pins, 27 }; 28
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.