From 1d501e7b35790efe117e2c71fbe1a8ac4ca82b79 Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Thu, 7 Jul 2011 11:35:20 +0000 Subject: [PATCH] --- yaml --- r: 260463 b: refs/heads/master c: 3d64b4496f5fd90618106555344205a522178c0c h: refs/heads/master i: 260461: a59294803e91a4f45ab43220c672b41f43894565 260459: dfd3ced611542ac2ef8b3ecc2d0965558f9c4ec0 260455: f6244c1d436c6f1c86ece74775ce4f2228f74281 260447: 42d212a9439cff0177fc0cfe0b2ba458bfb8d12d v: v3 --- [refs] | 2 +- trunk/arch/arm/mach-zynq/board_dt.c | 37 ----------------------------- trunk/arch/arm/mach-zynq/common.c | 22 ++++++++++++++--- trunk/arch/arm/mach-zynq/common.h | 5 ---- 4 files changed, 20 insertions(+), 46 deletions(-) diff --git a/[refs] b/[refs] index 90bc2bc91d2c..bb42a2505df5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b85a3ef4ac65169b65fd2fe9bec7912bbf475ba4 +refs/heads/master: 3d64b4496f5fd90618106555344205a522178c0c diff --git a/trunk/arch/arm/mach-zynq/board_dt.c b/trunk/arch/arm/mach-zynq/board_dt.c index 5b4710d09258..e69de29bb2d1 100644 --- a/trunk/arch/arm/mach-zynq/board_dt.c +++ b/trunk/arch/arm/mach-zynq/board_dt.c @@ -1,37 +0,0 @@ -/* - * This file contains code for boards with device tree support. - * - * Copyright (C) 2011 Xilinx - * - * based on arch/arm/mach-realview/core.c - * - * Copyright (C) 1999 - 2003 ARM Limited - * Copyright (C) 2000 Deep Blue Solutions Ltd - * - * 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. - */ - -#include -#include -#include -#include "common.h" - -static const char *xilinx_dt_match[] = { - "xlnx,zynq-ep107", - NULL -}; - -MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform") - .map_io = xilinx_map_io, - .init_irq = xilinx_irq_init, - .init_machine = xilinx_init_machine, - .timer = &xttcpss_sys_timer, - .dt_compat = xilinx_dt_match, -MACHINE_END diff --git a/trunk/arch/arm/mach-zynq/common.c b/trunk/arch/arm/mach-zynq/common.c index b3ac5c2e12dc..73e93687b81a 100644 --- a/trunk/arch/arm/mach-zynq/common.c +++ b/trunk/arch/arm/mach-zynq/common.c @@ -21,8 +21,11 @@ #include #include #include +#include +#include #include +#include #include #include #include @@ -40,7 +43,7 @@ static struct of_device_id zynq_of_bus_ids[] __initdata = { * xilinx_init_machine() - System specific initialization, intended to be * called from board specific initialization. */ -void __init xilinx_init_machine(void) +static void __init xilinx_init_machine(void) { #ifdef CONFIG_CACHE_L2X0 /* @@ -55,7 +58,7 @@ void __init xilinx_init_machine(void) /** * xilinx_irq_init() - Interrupt controller initialization for the GIC. */ -void __init xilinx_irq_init(void) +static void __init xilinx_irq_init(void) { gic_init(0, 29, SCU_GIC_DIST_BASE, SCU_GIC_CPU_BASE); } @@ -96,7 +99,20 @@ static struct map_desc io_desc[] __initdata = { /** * xilinx_map_io() - Create memory mappings needed for early I/O. */ -void __init xilinx_map_io(void) +static void __init xilinx_map_io(void) { iotable_init(io_desc, ARRAY_SIZE(io_desc)); } + +static const char *xilinx_dt_match[] = { + "xlnx,zynq-ep107", + NULL +}; + +MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform") + .map_io = xilinx_map_io, + .init_irq = xilinx_irq_init, + .init_machine = xilinx_init_machine, + .timer = &xttcpss_sys_timer, + .dt_compat = xilinx_dt_match, +MACHINE_END diff --git a/trunk/arch/arm/mach-zynq/common.h b/trunk/arch/arm/mach-zynq/common.h index bca21968f80b..a009644a1555 100644 --- a/trunk/arch/arm/mach-zynq/common.h +++ b/trunk/arch/arm/mach-zynq/common.h @@ -17,13 +17,8 @@ #ifndef __MACH_ZYNQ_COMMON_H__ #define __MACH_ZYNQ_COMMON_H__ -#include #include -extern void xilinx_init_machine(void); -extern void xilinx_irq_init(void); -extern void xilinx_map_io(void); - extern struct sys_timer xttcpss_sys_timer; #endif