aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-highbank/lluart.c
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-10-27 15:38:22 -0500
committerRob Herring <rob.herring@calxeda.com>2012-11-07 18:00:24 -0600
commit52530343331dc111e0899bfc976f21ace5b5c95c (patch)
tree815a1e0e8950dec620bd664367edfa9f69e4099c /arch/arm/mach-highbank/lluart.c
parentMerge remote-tracking branch 'arm-soc/devel/debug_ll_init' into debug_ll (diff)
downloadlinux-dev-52530343331dc111e0899bfc976f21ace5b5c95c.tar.xz
linux-dev-52530343331dc111e0899bfc976f21ace5b5c95c.zip
ARM: highbank: use common debug_ll_io_init
Remove the platform static mapping code for uart and use the common debug_ll_io_init function. Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'arch/arm/mach-highbank/lluart.c')
-rw-r--r--arch/arm/mach-highbank/lluart.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/arch/arm/mach-highbank/lluart.c b/arch/arm/mach-highbank/lluart.c
deleted file mode 100644
index 371575019f33..000000000000
--- a/arch/arm/mach-highbank/lluart.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright 2011 Calxeda, Inc.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope 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, see <http://www.gnu.org/licenses/>.
- */
-#include <linux/init.h>
-#include <asm/page.h>
-#include <asm/sizes.h>
-#include <asm/mach/map.h>
-
-#define HB_DEBUG_LL_PHYS_BASE 0xfff36000
-#define HB_DEBUG_LL_VIRT_BASE 0xfee36000
-
-static struct map_desc lluart_io_desc __initdata = {
- .virtual = HB_DEBUG_LL_VIRT_BASE,
- .pfn = __phys_to_pfn(HB_DEBUG_LL_PHYS_BASE),
- .length = SZ_4K,
- .type = MT_DEVICE,
-};
-
-void __init highbank_lluart_map_io(void)
-{
- iotable_init(&lluart_io_desc, 1);
-}