From d0ee56f602f9c384d4b4eb2a41c0dc9546515191 Mon Sep 17 00:00:00 2001 From: Tony Prisk Date: Fri, 28 Dec 2012 12:10:28 +1300 Subject: [PATCH] --- yaml --- r: 355459 b: refs/heads/master c: ce3f386fdf10d79eaf6ebd63bb7adbd95f08f9f0 h: refs/heads/master i: 355457: 314677206b56b15c89ba2d06b9ce55c5e43060e8 355455: 04c5140b0c3d821b93ed2f4450fb9a644bd5e0c6 v: v3 --- [refs] | 2 +- .../arch/arm/mach-vt8500/include/mach/timex.h | 26 ------------- .../arm/mach-vt8500/include/mach/uncompress.h | 37 ------------------- 3 files changed, 1 insertion(+), 64 deletions(-) delete mode 100644 trunk/arch/arm/mach-vt8500/include/mach/timex.h delete mode 100644 trunk/arch/arm/mach-vt8500/include/mach/uncompress.h diff --git a/[refs] b/[refs] index 7fc7eeca2b08..f1175881935d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b61a27227562d0892aab44b40d0f3b381f91038f +refs/heads/master: ce3f386fdf10d79eaf6ebd63bb7adbd95f08f9f0 diff --git a/trunk/arch/arm/mach-vt8500/include/mach/timex.h b/trunk/arch/arm/mach-vt8500/include/mach/timex.h deleted file mode 100644 index 8487e4c690b7..000000000000 --- a/trunk/arch/arm/mach-vt8500/include/mach/timex.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * arch/arm/mach-vt8500/include/mach/timex.h - * - * Copyright (C) 2010 Alexey Charkov - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef MACH_TIMEX_H -#define MACH_TIMEX_H - -#define CLOCK_TICK_RATE (3000000) - -#endif /* MACH_TIMEX_H */ diff --git a/trunk/arch/arm/mach-vt8500/include/mach/uncompress.h b/trunk/arch/arm/mach-vt8500/include/mach/uncompress.h deleted file mode 100644 index e6e81fdaf109..000000000000 --- a/trunk/arch/arm/mach-vt8500/include/mach/uncompress.h +++ /dev/null @@ -1,37 +0,0 @@ -/* arch/arm/mach-vt8500/include/mach/uncompress.h - * - * Copyright (C) 2010 Alexey Charkov - * - * Based on arch/arm/mach-dove/include/mach/uncompress.h - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - */ - -#define UART0_PHYS 0xd8200000 -#define UART0_ADDR(x) *(volatile unsigned char *)(UART0_PHYS + x) - -static void putc(const char c) -{ - while (UART0_ADDR(0x1c) & 0x2) - /* Tx busy, wait and poll */; - - UART0_ADDR(0) = c; -} - -static void flush(void) -{ -} - -/* - * nothing to do - */ -#define arch_decomp_setup() -#define arch_decomp_wdog()