mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 07:20:52 +07:00
b632a30e8b
With ARCH_HAS_DECOMP_WDOG removed from arch/arm/boot/compressed/decompress.c, all the arch_decomp_wdog() definition at platform level is unneeded. Remmove it. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Nicolas Pitre <nico@linaro.org> Acked-by: Jason Cooper <jason@lakedaemon.net>
45 lines
861 B
C
45 lines
861 B
C
/*
|
|
* arch/arm/mach-ebsa110/include/mach/uncompress.h
|
|
*
|
|
* Copyright (C) 1996,1997,1998 Russell King
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <linux/serial_reg.h>
|
|
|
|
#define SERIAL_BASE ((unsigned char *)0xf0000be0)
|
|
|
|
/*
|
|
* This does not append a newline
|
|
*/
|
|
static inline void putc(int c)
|
|
{
|
|
unsigned char v, *base = SERIAL_BASE;
|
|
|
|
do {
|
|
v = base[UART_LSR << 2];
|
|
barrier();
|
|
} while (!(v & UART_LSR_THRE));
|
|
|
|
base[UART_TX << 2] = c;
|
|
}
|
|
|
|
static inline void flush(void)
|
|
{
|
|
unsigned char v, *base = SERIAL_BASE;
|
|
|
|
do {
|
|
v = base[UART_LSR << 2];
|
|
barrier();
|
|
} while ((v & (UART_LSR_TEMT|UART_LSR_THRE)) !=
|
|
(UART_LSR_TEMT|UART_LSR_THRE));
|
|
}
|
|
|
|
/*
|
|
* nothing to do
|
|
*/
|
|
#define arch_decomp_setup()
|