root/arch/sh/boards/mach-se/board-se7619.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. se7619_mode_pins

   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 };

/* [<][>][^][v][top][bottom][index][help] */