]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/sh/boards/mach-se/board-se7619.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / sh / boards / mach-se / board-se7619.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
f36af3fd
YS
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>
a45e724b 12#include <asm/io.h>
f36af3fd
YS
13#include <asm/machvec.h>
14
16b25920
PM
15static int se7619_mode_pins(void)
16{
17 return MODE_PIN2 | MODE_PIN0;
18}
19
f36af3fd
YS
20/*
21 * The Machine Vector
22 */
23
82f81f47 24static struct sh_machine_vector mv_se __initmv = {
f36af3fd 25 .mv_name = "SolutionEngine",
16b25920 26 .mv_mode_pins = se7619_mode_pins,
f36af3fd 27};