cregit-Linux how code gets into the kernel

Release 4.14 arch/sparc/include/asm/io.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ___ASM_SPARC_IO_H

#define ___ASM_SPARC_IO_H
#if defined(__sparc__) && defined(__arch64__)
#include <asm/io_64.h>
#else
#include <asm/io_32.h>
#endif

/*
 * Defines used for both SPARC32 and SPARC64
 */

/* Big endian versions of memory read/write routines */

#define readb_be(__addr)	__raw_readb(__addr)

#define readw_be(__addr)	__raw_readw(__addr)

#define readl_be(__addr)	__raw_readl(__addr)

#define writeb_be(__b, __addr)	__raw_writeb(__b, __addr)

#define writel_be(__w, __addr)	__raw_writel(__w, __addr)

#define writew_be(__l, __addr)	__raw_writew(__l, __addr)

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Jan Andersson5062.50%112.50%
Sam Ravnborg1721.25%225.00%
Linus Torvalds (pre-git)1215.00%450.00%
Greg Kroah-Hartman11.25%112.50%
Total80100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.