diff options
author | Hans J. Koch <hjk@hansjkoch.de> | 2011-12-22 21:30:48 +0100 |
---|---|---|
committer | Hans J. Koch <hjk@hansjkoch.de> | 2012-01-05 13:34:39 +0100 |
commit | 2e3d256de9d3db5a7ca19b61305627a516b54b45 (patch) | |
tree | 2b18d6c3b2c24138667112829bac368987a5bdc5 /arch/arm/plat-tcc/include/mach/uncompress.h | |
parent | 00d79e9d0e4b49144177bc07baa015febc822c10 (diff) |
arm: Remove plat-tcc directory
The Telechips ARM architecture is being removed. This patch
deletes the arch/arm/plat-tcc/ folder.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Harry Sievers <hsievers@csselectronic.com>
Signed-off-by: Hans J. Koch <hjk@hansjkoch.de>
Diffstat (limited to 'arch/arm/plat-tcc/include/mach/uncompress.h')
-rw-r--r-- | arch/arm/plat-tcc/include/mach/uncompress.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/arch/arm/plat-tcc/include/mach/uncompress.h b/arch/arm/plat-tcc/include/mach/uncompress.h deleted file mode 100644 index 7a3e33a27a3..00000000000 --- a/arch/arm/plat-tcc/include/mach/uncompress.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (C) 2009 Hans J. Koch <hjk@linutronix.de> - * - * This file is licensed under the terms of the GPL version 2. - */ - -#include <linux/serial_reg.h> -#include <linux/types.h> - -#include <mach/tcc8k-regs.h> - -unsigned int system_rev; - -#define ID_MASK 0x7fff - -static void putc(int c) -{ - u32 *uart_lsr = (u32 *)(UART_BASE_PHYS + (UART_LSR << 2)); - u32 *uart_tx = (u32 *)(UART_BASE_PHYS + (UART_TX << 2)); - - while (!(*uart_lsr & UART_LSR_THRE)) - barrier(); - *uart_tx = c; -} - -static inline void flush(void) -{ -} - -/* - * nothing to do - */ -#define arch_decomp_setup() -#define arch_decomp_wdog() |