cregit-Linux how code gets into the kernel

Release 4.11 arch/arm/mach-ks8695/include/mach/uncompress.h

/*
 * arch/arm/mach-ks8695/include/mach/uncompress.h
 *
 * Copyright (C) 2006 Ben Dooks <ben@simtec.co.uk>
 * Copyright (C) 2006 Simtec Electronics
 *
 * KS8695 - Kernel uncompressor
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __ASM_ARCH_UNCOMPRESS_H

#define __ASM_ARCH_UNCOMPRESS_H

#include <linux/io.h>
#include <mach/regs-uart.h>


static inline void putc(char c) { while (!(__raw_readl((void __iomem*)KS8695_UART_PA + KS8695_URLS) & URLS_URTHRE)) barrier(); __raw_writel(c, (void __iomem*)KS8695_UART_PA + KS8695_URTH); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Victor3576.09%133.33%
Arnd Bergmann1123.91%266.67%
Total46100.00%3100.00%


static inline void flush(void) { while (!(__raw_readl((void __iomem*)KS8695_UART_PA + KS8695_URLS) & URLS_URTE)) barrier(); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Victor2683.87%150.00%
Arnd Bergmann516.13%150.00%
Total31100.00%2100.00%

#define arch_decomp_setup() #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Andrew Victor7780.21%120.00%
Arnd Bergmann1616.67%240.00%
Russell King33.12%240.00%
Total96100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.