cregit-Linux how code gets into the kernel

Release 4.10 arch/mips/fw/arc/env.c

Directory: arch/mips/fw/arc
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * env.c: ARCS environment variable routines.
 *
 * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
 */
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/string.h>

#include <asm/fw/arc/types.h>
#include <asm/sgialib.h>


PCHAR __init ArcGetEnvironmentVariable(CHAR *name) { return (CHAR *) ARC_CALL1(get_evar, name); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git1568.18%375.00%
ralf baechleralf baechle731.82%125.00%
Total22100.00%4100.00%


LONG __init ArcSetEnvironmentVariable(PCHAR name, PCHAR value) { return ARC_CALL2(set_evar, name, value); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git1986.36%375.00%
ralf baechleralf baechle313.64%125.00%
Total22100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git4676.67%457.14%
ralf baechleralf baechle1220.00%114.29%
aurelien jarnoaurelien jarno11.67%114.29%
justin mattockjustin mattock11.67%114.29%
Total60100.00%7100.00%
Directory: arch/mips/fw/arc
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.